GET
/
orchestrate
/
agents
/
{id}
/
releases
/
{version}
curl --request GET \
  --url http://localhost/api/v1/orchestrate/agents/{id}/releases/{version} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "tenant_id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "version_label": 123,
  "instructions": "<string>",
  "tools": [],
  "collaborators": [],
  "llm": "<string>",
  "created_by": "<string>",
  "created_on": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "updated_by": "<string>",
  "style": "default",
  "supported_apps": [
    "slack/askhr"
  ],
  "agent_mapping": {},
  "deleted_by": "<string>",
  "deleted_at": "2023-11-07T05:31:56Z",
  "hidden": false,
  "points_to": [],
  "display_name": "<string>",
  "comments": "<string>",
  "mapped_environments": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "current_version": 123
    }
  ],
  "knowledge_base": [
    "<string>"
  ],
  "environments": [],
  "structured_output": {},
  "custom_join_tool": {},
  "deployment_status": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required
version
integer
required

Response

200
application/json

Successful Response

Schema for a complete agent version.