Skip to main content
GET
/
organizations
/
{organization_id}
Get Organization
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.

Common Headers

HeaderValueRequiredDescription
AuthorizationBearer <api-key>trueYour API key for authentication
Content-Typeapplication/jsontrueContent type of the request

Path

organization_id
string
required
ID of organization to retrieve

Authorizations

Authorization
string
header
default:DEFAULT-TOKEN-HERE
required

Use your API key as the bearer token

Path Parameters

organization_id
string
required

ID of organization to retrieve

Example:

"org_01k2cm4r59e5z8k5ggrbbxjcwy"

Response

200 - application/json

Customer details

data
object