Skip to main content
PUT
/
organizations
/
{id}
Update an organization
curl --request PUT \
  --url https://api.example.com/organizations/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>"
}

Path Parameters

id
string
required

Body

application/json
name
string
required

Name given to the organization.

Response

Organization updated successfully

id
string
required

Unique identifier of the organization.

name
string
required

Name given to the organization.