Webex · Schema
InternalServerError
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| code | integer | An unexpected error occurred while processing your request. Contact https://developer.webex.com/support for assistance. |
| message | string | A detailed error message explaining the server error. |
| trackingId | string | A unique identifier for this error that can be used for debugging purposes. Include this when contacting support. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/InternalServerError",
"title": "InternalServerError",
"type": "object",
"required": [
"code",
"message"
],
"properties": {
"code": {
"type": "integer",
"enum": [
1006
],
"description": "An unexpected error occurred while processing your request. Contact https://developer.webex.com/support for assistance.",
"example": 1006
},
"message": {
"type": "string",
"description": "A detailed error message explaining the server error.",
"example": "An unexpected error occurred while processing your request."
},
"trackingId": {
"type": "string",
"description": "A unique identifier for this error that can be used for debugging purposes. Include this when contacting support.",
"example": "GTWY_e6763c9a-71b2-4515-ad5b-89260f7f596"
}
},
"example": {
"code": 1006,
"message": "An unexpected error occurred while processing your request.",
"trackingId": "GTWY_e6763c9a-71b2-4515-ad5b-89260f7f596"
}
}