Update Organization
PATCH
/api/organizations/{id}
organizations
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH '/api/organizations/organization_uuid_string' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Acme Corp Updated",
"website": "https://www.acmecorp.com/updated",
"country": "CA",
"state": "ON",
"city": "Toronto",
"addressLine1": "456 Updated St",
"addressLine2": "Suite 200",
"zipCode": 45634,
"externalId": "acme_corp_external_id_string"
}'
Response Response Example
{
"id": "organization_uuid_string",
"name": "Acme Corp Updated",
"website": "https://www.acmecorp.com/updated",
"country": "CA",
"state": "ON",
"city": "Toronto",
"addressLine1": "456 Updated St",
"addressLine2": "Suite 200",
"zipCode": 45634,
"externalId": "acme_corp_external_id_string"
}
Request
Path Params
id
string
required
Example:
organization_uuid_string
Body Params application/json