POST
/
orchestrate
/
agents
curl --request POST \
  --url http://localhost/api/v1/orchestrate/agents \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "display_name": "<string>",
  "description": "<string>",
  "instructions": "<string>",
  "tools": [
    "<string>"
  ],
  "collaborators": [
    "<string>"
  ],
  "llm": "<string>",
  "style": "default",
  "supported_apps": [
    "slack/askhr"
  ],
  "glossary": [
    "<string>"
  ],
  "guidelines": [
    "<string>"
  ],
  "knowledge_base": [
    "<string>"
  ],
  "hidden": false,
  "structured_output": {},
  "custom_join_tool": "<string>"
}'
"<any>"

Authorizations

Authorization
string
header
required

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

Body

application/json

Schema for creating a new agent.

Response

200
application/json

Successful Response

The response is of type any.