Webex · Example Payload

Webex Assignorunassignnumberstoaperson Example

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Webex Assignorunassignnumberstoaperson Example is an example object payload from Webex, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "assignOrUnassignNumbersToAPerson",
  "method": "PUT",
  "path": "/telephony/config/people/{personId}/numbers",
  "summary": "Assign or Unassign numbers to a person",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "enableDistinctiveRingPattern": true,
        "phoneNumbers": [
          {
            "directNumber": "+12145553567",
            "extension": "0007",
            "primary": false,
            "action": "ADD",
            "ringPattern": "SHORT_LONG_SHORT"
          },
          {
            "directNumber": "+12145553569",
            "extension": "0009",
            "primary": false,
            "action": "DELETE",
            "ringPattern": "SHORT_LONG_SHORT"
          }
        ]
      }
    }
  ],
  "responseExamples": []
}