Agents
List of valid attributes:
Attribute | Description | Specifics |
---|---|---|
active | Is AI Agent active or not | Must be true or false |
description | Human readable explanation | - |
discarded_at | Null or timestamp of removal | Cannot be set |
name | Name of the agent | Must be set |
Meta data: Permissions
Group | Description |
---|---|
actions | Contains permissions to edit an agent |
Update
This endpoint updates an agent.
HTTP Request
PUT /api/v1/agents/:agent_id
URL Parameters
Parameter | Description |
---|---|
agent_id | The ID of the agent to update |
Response:
{ "data": { "id": "61bbbd38-8640-4fdf-b446-b1660c32988e", "type": "agent", "attributes": { ... } }}
List
This endpoint returns all agents of current user’s account.
HTTP Request
GET /api/v1/agents
Response
{ "data": [ { "id": "61bbbd38-8640-4fdf-b446-b1660c32988e", "type": "agent", "attributes": { ... } }, { ... } ]}