curl --request PATCH \
--url https://api.open.cx/org \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>"
}
'{
"name": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}Update settings of the organization associated with the current API key.
curl --request PATCH \
--url https://api.open.cx/org \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>"
}
'{
"name": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The name of the organization.
1Was this page helpful?