Zendesk · Schema
OrganizationCreate
Payload for creating a new organization.
ChatCRMHelp CenterSellSupportT1TalkTicketingTickets
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the organization. |
| details | string | |
| notes | string | |
| domain_names | array | |
| group_id | integer | |
| shared_tickets | boolean | |
| shared_comments | boolean | |
| external_id | string | |
| tags | array | |
| organization_fields | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "OrganizationCreate",
"type": "object",
"description": "Payload for creating a new organization.",
"properties": {
"name": {
"type": "string",
"description": "The name of the organization."
},
"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"
}
}
}