Zendesk · Schema

OrganizationUpdate

Payload for updating an existing organization.

ChatCRMHelp CenterSellSupportT1TalkTicketingTickets

Properties

Name Type Description
name string
details string
notes string
domain_names array
group_id integer
shared_tickets boolean
shared_comments boolean
external_id string
tags array
organization_fields object
View JSON Schema on GitHub

JSON Schema

zendesk-support-organization-update-schema.json Raw ↑
{
  "$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"
    }
  }
}