create_organization
Create a new organization in Zendesk by specifying its name, domain names, details, notes, and tags. Facilitates efficient management of organizational data within the Zendesk API MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
details | No | Details about the organization | |
domain_names | No | Domain names for the organization | |
name | Yes | Organization name | |
notes | No | Notes about the organization | |
tags | No | Tags for the organization |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"details": {
"description": "Details about the organization",
"type": "string"
},
"domain_names": {
"description": "Domain names for the organization",
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"description": "Organization name",
"type": "string"
},
"notes": {
"description": "Notes about the organization",
"type": "string"
},
"tags": {
"description": "Tags for the organization",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"name"
],
"type": "object"
}