PATCH
/manager/vectors/{id}
curl \
--request PATCH 'https://domain.tld/api/v2/manager/vectors/{id}' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"content":"string"}'
Request examples
{
"content": "string"
}
Response examples (200)
{
"id": 1,
"created_at": "2023-10-09T12:12:40.220000Z",
"updated_at": "2023-10-09T12:12:40.220000Z",
"content": "Vector content",
"actions": [
{
"type": 42,
"id_chat_topic": 42
}
]
}
Response examples (401)
{
"message": "Unauthorized."
}
Response examples (422)
{
"message": "field is required! (and 3 more error)",
"errors": {
"field": [
"Error message details here"
],
"additionalProperty1": [
"Error message details here"
],
"additionalProperty2": [
"Error message details here"
]
}
}