Skip to main content
PATCH
/
organizations
/
{organization_id}
Update Organization
curl --request PATCH \
  --url https://api.example.com/organizations/{organization_id}

PATCH /organizations/

Update mutable fields on an organization. Currently supports changing the organization name and slug.

Notes

  • Requires owner or admin role in the organization. Returns 403 for members or viewers.
  • The request body uses partial updates — only include the fields you want to change.
  • slug must be between 3 and 64 characters.
  • name must be between 1 and 256 characters.
  • Returns 400 if the request body contains no fields to update.
  • Returns 404 if the organization does not exist.
  • See Get Organization to read current values before updating.