Organizations
Update organization details
Updates an organization's display name, external ID, or metadata. Requires a valid organization identifier. Region code cannot be modified through this endpoint.
patch/api/v1/organizations/{id}
Path parameters
idstring required
Unique identifier of the organization to be updated
Request body
Example request
{
"display_name": "Acme Corporation",
"external_id": "tenant_12345",
"logo_url": "https://cdn.example.com/acme-logo.png",
"metadata": {
"industry": "technology"
},
"slug": "acme"
}Response
Returns the updated organization with all current details reflected in the response.
Example response
{
"organization": {
"create_time": "2025-02-15T06:23:44.560000Z",
"display_name": "Megasoft",
"external_id": "my_unique_id",
"id": "org_59615193906282635",
"logo_url": "https://cdn.example.com/acme-logo.png",
"settings": {
"features": [
{
"enabled": true,
"name": "sso"
},
{
"enabled": false,
"name": "directory_sync"
}
]
},
"slug": "acme",
"update_time": "2025-02-15T06:23:44.560000Z"
}
}