curl --request PUT \
--url http://localhost:8000/api/v1/knowledge-items/{knowledge_item_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"text": "<string>"
}
'{
"text": "<string>",
"id": 123,
"company": {
"id": 123,
"name": "<string>"
},
"date_added": "2023-11-07T05:31:56Z",
"date_updated": "2023-11-07T05:31:56Z"
}Update the knowledge item for the given ID.
Args: knowledge_item_id (int): The ID of the knowledge item knowledge_item (KnowledgeItemUpdateSchema): The knowledge item to update _admin_user (User): The current user
Returns: KnowledgeItemSchema: The updated knowledge item
curl --request PUT \
--url http://localhost:8000/api/v1/knowledge-items/{knowledge_item_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"text": "<string>"
}
'{
"text": "<string>",
"id": 123,
"company": {
"id": 123,
"name": "<string>"
},
"date_added": "2023-11-07T05:31:56Z",
"date_updated": "2023-11-07T05:31:56Z"
}The access token received from the authorization server in the OAuth 2.0 flow.
The schema for updating a knowledge item.