GET
/
orchestrate
/
agents
/
{id}
/
tools-by-version
curl --request GET \
  --url http://localhost/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

200
application/json

Successful Response

The response is of type AgentToolVersionMinimal · object[].