Get a vector action (manager)

GET /manager/vectors/{vector_id}/actions/{action_id}

Path parameters

  • vector_id integer(int32) Required

    The id of the vector

  • action_id integer(int32) Required

    The id of the vectorAction

Responses

  • 200 application/json

    returns the vector action

    Hide response attributes Show response 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/{vector_id}/actions/{action_id}
curl \
 --request GET 'https://domain.tld/api/v2/manager/vectors/{vector_id}/actions/{action_id}' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "type": 42,
  "id_chat_topic": 42
}
Response examples (401)
{
  "message": "Unauthorized."
}