GET
/
orchestrate
/
agents
/
{id}
/
releases
curl --request GET \
  --url http://localhost/api/v1/orchestrate/agents/{id}/releases \
  --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>",
    "style": "default",
    "supported_apps": [
      "slack/askhr"
    ],
    "points_to": [],
    "comments": "<string>",
    "mapped_environments": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>",
        "current_version": 123
      }
    ],
    "created_by": "<string>",
    "created_on": "2023-11-07T05:31:56Z",
    "updated_by": "<string>",
    "updated_at": "2023-11-07T05:31:56Z",
    "deleted_by": "<string>",
    "hidden": false,
    "environments": [],
    "deleted_at": "2023-11-07T05:31:56Z",
    "knowledge_base": [
      "<string>"
    ],
    "display_name": "<string>",
    "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

Response

200
application/json

Successful Response

The response is of type ListAgentVersion · object[].