Payload for updating an existing organization.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "OrganizationUpdate", "type": "object", "description": "Payload for updating an existing organization.", "properties": { "name": { "type": "string" }, "details": { "type": "string" }, "notes": { "type": "string" }, "domain_names": { "type": "array" }, "group_id": { "type": "integer" }, "shared_tickets": { "type": "boolean" }, "shared_comments": { "type": "boolean" }, "external_id": { "type": "string" }, "tags": { "type": "array" }, "organization_fields": { "type": "object" } } }