Get organization

GET /api/organizations/{id}

Get organization details by ID.

Path parameters

  • id string Required

    The unique identifier of the organization.

Responses

GET /api/organizations/{id}
curl \
 -X GET https://[tenant_id].logto.app/api/organizations/{id} \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "tenantId": "string",
  "id": "string",
  "name": "string",
  "description": "string",
  "customData": {},
  "isMfaRequired": true,
  "branding": {
    "logoUrl": "string",
    "darkLogoUrl": "string",
    "favicon": "string",
    "darkFavicon": "string"
  },
  "createdAt": 42.0
}