curl --request GET \
--url https://api-sandbox.stablesea.com/v1/organizations \
--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"
}
]
}Returns all organizations
curl --request GET \
--url https://api-sandbox.stablesea.com/v1/organizations \
--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"
}
]
}| Header | Value | Required | Description |
|---|---|---|---|
Authorization | Bearer <api-key> | true | Your API key for authentication |
Content-Type | application/json | true | Content type of the request |
Use your API key as the bearer token
Organizations response
Show child attributes
"org_01k2cm4r59e5z8k5ggrbbxjcwy"
"Acme Corporation"
Show child attributes
"John"
"Doe"
Show child attributes
ACTIVE, COMPLIANCE_HOLD "ACTIVE"
{
"current_status": "ACTIVE",
"status_history": [
{
"status": "ACTIVE",
"created_at": "2024-01-15T10:00:00Z"
}
]
}ISO 8601 UTC timestamp (RFC3339)
"2024-01-15T10:00:00Z"
ISO 8601 UTC timestamp (RFC3339)
"2024-01-15T10:00:00Z"