cURL
curl --request GET \ --url https://api.example.com/admin/customers/{customer_id}
{ "customer_id": "550e8400-e29b-41d4-a716-446655440000", "company_name": "Acme Financial", "contact_email": "compliance@acmefinancial.com", "tier": "growth", "status": "active", "api_key_id": "abc***xyz", "annual_commitment": 250000, "annual_validation_limit": 10000000, "contract_start": "2026-01-01", "contract_end": "2026-12-31", "created_at": "2026-01-19T10:30:00Z", "updated_at": "2026-01-19T10:30:00Z" }
Get customer details by ID
active
suspended
cancelled
curl -X GET "https://{admin-api-url}/admin/customers/550e8400-e29b-41d4-a716-446655440000" \ -H "x-api-key: ADMIN_API_KEY"