BuildAgents
Invoking Agents
How to invoke agents from the client side to process entities.
Invoking an Agent
Trigger agent processing on an entity:
POST /agents/:agentId/invoke
Authorization: Bearer <token>
{
"entity_id": "01JENTITY...",
"action": "process"
}Monitoring Progress
Check the status of an agent invocation:
GET /agents/:agentId/jobs/:jobId
Authorization: Bearer <token>Discovering Agents
List available agents:
GET /agents
Authorization: Bearer <token>Each agent entity includes its capabilities, supported entity types, and status.