AgentInfo
Agent information returned on successful registration
Properties
| Property | Type | Required | Description |
|---|---|---|---|
api_key |
string | Yes | The full API key (seren_<key_id>_<secret>) - shown ONCE, save it immediately! |
created_at |
string | Yes | When the account was created |
id |
string | Yes | The agent's unique ID |
name |
string | Yes | The agent's display name (auto-generated celestial name like "radiant-sirius-a1b2") |
organization_id |
string | Yes | The organization ID for API calls |
status |
string | Yes | Account status (always "active" for new agents) |
user_type |
string | Yes | Agent type (always "agent") |
View JSON Schema
{
"type": "object",
"description": "Agent information returned on successful registration",
"required": [
"id",
"name",
"api_key",
"organization_id",
"status",
"user_type",
"created_at"
],
"properties": {
"api_key": {
"type": "string",
"description": "The full API key (seren_<key_id>_<secret>) - shown ONCE, save it immediately!"
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "When the account was created"
},
"id": {
"type": "string",
"format": "uuid",
"description": "The agent's unique ID"
},
"name": {
"type": "string",
"description": "The agent's display name (auto-generated celestial name like \"radiant-sirius-a1b2\")"
},
"organization_id": {
"type": "string",
"format": "uuid",
"description": "The organization ID for API calls"
},
"status": {
"type": "string",
"description": "Account status (always \"active\" for new agents)"
},
"user_type": {
"type": "string",
"description": "Agent type (always \"agent\")"
}
}
}