cURL
curl --request GET \ --url https://api-sandbox.stablesea.com/v1/organizations/{organization_id} \ --header 'Authorization: Bearer <token>'
{ "data": { "id": "org_01k2cm4r59e5z8k5ggrbbxjcwy", "name": "Acme Corporation", "contact": { "email": "[email protected]", "first_name": "John", "last_name": "Doe" }, "status": { "current_status": "ACTIVE", "status_history": [ { "status": "ACTIVE", "created_at": "2024-01-15T10:00:00Z" } ] }, "created_at": "2024-01-15T10:00:00Z", "updated_at": "2024-01-15T10:00:00Z" } }
Retrieve details for a specific organization
Authorization
Bearer <api-key>
Content-Type
application/json
Use your API key as the bearer token
ID of organization to retrieve
"org_01k2cm4r59e5z8k5ggrbbxjcwy"
Customer details
Show child attributes
"Acme Corporation"
"[email protected]"
"John"
"Doe"
ACTIVE
COMPLIANCE_HOLD
"ACTIVE"
ISO 8601 UTC timestamp (RFC3339)
"2024-01-15T10:00:00Z"
{ "current_status": "ACTIVE", "status_history": [ { "status": "ACTIVE", "created_at": "2024-01-15T10:00:00Z" } ]}