Skip to main content
Get List Of Tools Of An Agent Specific To A Version
curl --request GET \
  --url https://{api_endpoint}/api/v1/orchestrate/agents/{id}/tools-by-version \
  --header 'Authorization: Bearer <token>'
[
  {
    "tool_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "version_label": 123,
    "tool_version_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "display_name": "<string>",
    "agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Query Parameters

version_label
integer
default:1

Version of the agent to retrieve the associated tools

Required range: x >= 1

Response

Successful Response

tool_id
string<uuid>
required

Unique Identifier of the tool

version_label
integer
required

Version Label

tool_version_id
string<uuid>
required

Tool ID of the agent version

name
string
required

Tool name

display_name
string
required

Tool display name

agent_id
string<uuid>
required

Associated agent id