Skip to main content
PATCH
/
core
/
organization
curl -X PATCH https://acusight.io/api/organization \
  -H "Authorization: Bearer <TOKEN>" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Acme Industries"
  }'
{
  "success": true,
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "name": "Acme Industries",
    "slug": "acme-corp"
  }
}
Updates the organization name. The organization slug is not changed.

Request Body

name
string
required
The new display name for the organization

Response

id
string
Unique identifier for the organization
name
string
The updated organization name
slug
string
The organization’s URL-friendly identifier (unchanged)
curl -X PATCH https://acusight.io/api/organization \
  -H "Authorization: Bearer <TOKEN>" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Acme Industries"
  }'
{
  "success": true,
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "name": "Acme Industries",
    "slug": "acme-corp"
  }
}