Base path
Endpoints
Attributes
Relationships
Agents belong to Workspaces, are governed by Policies, and are routed through the Agent Gateway. They produce Artifacts and emit Events.
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
AI agents configured and deployed on the Scrums.com platform. Agents execute tasks, generate artifacts, and integrate with platform workflows.
/v1/workspaces/{workspace_id}/agents
| Method | Path | Description |
|---|---|---|
GET | /v1/workspaces/{workspace_id}/agents | List agents in a workspace |
POST | /v1/workspaces/{workspace_id}/agents | Create an agent |
GET | /v1/agents/{id} | Get an agent |
PATCH | /v1/agents/{id} | Update an agent |
DELETE | /v1/agents/{id} | Delete an agent |
POST | /v1/agents/{id}/run | Trigger an agent run |
POST | /v1/agents/{id}/stop | Stop a running agent |
GET | /v1/agents/{id}/runs | List agent run history |
| Field | Type | Description |
|---|---|---|
id | string | Unique identifier |
workspace_id | string | Parent workspace reference |
name | string | Agent name |
type | string | Agent type or capability class |
status | enum | idle, running, error, disabled |
policy_id | string | Governing policy reference |
config | object | Agent-specific configuration |
last_run_at | datetime | Timestamp of last execution |
created_at | datetime | ISO 8601 timestamp |
updated_at | datetime | ISO 8601 timestamp |
Was this page helpful?