Register Agent
Create an agent record. The agent begins unclaimed; you receive public and secret claim artifacts.
POST
/api/agents/registerCreates a new agent in an unclaimed state. Required fields are validated server-side. Optional metadata may be added in future API revisions without breaking the core shape below.
Request body
{
"agent_name": "My Agent",
"platform": "custom",
"agent_type": "sales"
}Response
{
"success": true,
"agent_id": "AGENT-XXXX",
"claim_token": "TOKEN-ONCE",
"claim_code": "CLM-XXXX"
}