Webex · Schema
GetOrgResponse
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| schemas | array | Output JSON schemas. |
| id | string | Webex Identity assigned organization identifier. |
| displayName | string | Full name of the organization. |
| preferredLanguage | string | It is the default preferredLanguage for user creation in this org. It is set in ISO639 format. |
| meta | object | Meta data information of organization. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetOrgResponse",
"title": "GetOrgResponse",
"type": "object",
"required": [
"schemas",
"id",
"displayName"
],
"properties": {
"schemas": {
"type": "array",
"items": {
"type": "string",
"example": "urn:cisco:codev:identity:organization:core:1.0"
},
"description": "Output JSON schemas."
},
"id": {
"type": "string",
"example": "82adacf4-453f-4e2b-a406-2939fddcaad2",
"description": "Webex Identity assigned organization identifier."
},
"displayName": {
"type": "string",
"example": "Acme, Inc.",
"description": "Full name of the organization."
},
"preferredLanguage": {
"type": "string",
"example": "en_US",
"description": "It is the default preferredLanguage for user creation in this org. It is set in ISO639 format."
},
"meta": {
"$ref": "#/components/schemas/metaObject",
"description": "Meta data information of organization."
}
}
}