Get a vector (manager)

GET /manager/vectors/{id}

Path parameters

  • id integer(int32) Required

    The id of the vector

Responses

  • 200 application/json

    returns the vector

    Hide response attributes Show response attributes object
    • id integer
    • created_at string(date-time)
    • updated_at string(date-time)
    • content string
    • actions array[object]
      Hide actions attributes Show actions attributes object
      • type integer
      • id_chat_topic integer
  • 401 application/json

    Unauthorized.

    Hide response attribute Show response attribute object
    • message string
  • 404

    Not found

GET /manager/vectors/{id}
curl \
 --request GET 'https://domain.tld/api/v2/manager/vectors/{id}' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
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."
}