Webex · Schema

UpdateContactResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
outcome string Outcome of the operation
statusCode integer 0 for Queued, non-zero for Failed
summary string Summary of the operation
View JSON Schema on GitHub

JSON Schema

webex-updatecontactresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateContactResponse",
  "title": "UpdateContactResponse",
  "type": "object",
  "properties": {
    "outcome": {
      "type": "string",
      "enum": [
        "Queued",
        "Failed"
      ],
      "description": "Outcome of the operation",
      "example": "Queued"
    },
    "statusCode": {
      "type": "integer",
      "description": "0 for Queued, non-zero for Failed",
      "example": 0
    },
    "summary": {
      "type": "string",
      "description": "Summary of the operation",
      "example": "Queued for updating the contact status"
    }
  },
  "example": {
    "outcome": "Queued",
    "statusCode": 0,
    "summary": "Queued for updating the contact status"
  }
}