curl -X GET "https://olive-gateway-a6ba.onrender.com/api/v1/agents/agent_abc123" \
-H "Authorization: Bearer olive_live_xxx"
{
"agent": {
"id": "agent_abc123",
"type": "super_agent",
"business_name": "ABC Money Services",
"first_name": "John",
"last_name": "Doe",
"phone_number": "+23277123456",
"email": "john@abcmoney.sl",
"location": "Freetown CBD",
"status": "active",
"float_balance": 5000000,
"float_balance_formatted": "5,000,000.00 SLE",
"commission_tier": "premium",
"settlement_mode": "instant",
"sub_agent_count": 12,
"created_at": "2025-01-01T10:00:00Z"
}
}
Retrieve agent details by ID
curl -X GET "https://olive-gateway-a6ba.onrender.com/api/v1/agents/agent_abc123" \
-H "Authorization: Bearer olive_live_xxx"
{
"agent": {
"id": "agent_abc123",
"type": "super_agent",
"business_name": "ABC Money Services",
"first_name": "John",
"last_name": "Doe",
"phone_number": "+23277123456",
"email": "john@abcmoney.sl",
"location": "Freetown CBD",
"status": "active",
"float_balance": 5000000,
"float_balance_formatted": "5,000,000.00 SLE",
"commission_tier": "premium",
"settlement_mode": "instant",
"sub_agent_count": 12,
"created_at": "2025-01-01T10:00:00Z"
}
}
Bearer olive_live_xxx or Bearer eyJ... (JWT)agent_abc123)Show Agent Object
super_agent or sub_agentactive, suspended, terminatedcurl -X GET "https://olive-gateway-a6ba.onrender.com/api/v1/agents/agent_abc123" \
-H "Authorization: Bearer olive_live_xxx"
{
"agent": {
"id": "agent_abc123",
"type": "super_agent",
"business_name": "ABC Money Services",
"first_name": "John",
"last_name": "Doe",
"phone_number": "+23277123456",
"email": "john@abcmoney.sl",
"location": "Freetown CBD",
"status": "active",
"float_balance": 5000000,
"float_balance_formatted": "5,000,000.00 SLE",
"commission_tier": "premium",
"settlement_mode": "instant",
"sub_agent_count": 12,
"created_at": "2025-01-01T10:00:00Z"
}
}
| Status | Code | Description |
|---|---|---|
| 401 | UNAUTHORIZED | Invalid API key |
| 403 | FORBIDDEN | Not authorized to view this agent |
| 404 | NOT_FOUND | Agent not found |
| 500 | INTERNAL_ERROR | Server error |