Webex · Example Payload

Webex Getpersonprimaryavailablephonenumbers Example

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Webex Getpersonprimaryavailablephonenumbers 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": "getPersonPrimaryAvailablePhoneNumbers",
  "method": "GET",
  "path": "/telephony/config/people/primary/availableNumbers",
  "summary": "Get Person Primary Available Phone Numbers",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "phoneNumbers": [
          {
            "phoneNumber": "+12056350001",
            "state": "ACTIVE",
            "isMainNumber": false,
            "includedTelephonyTypes": "MOBILE_NUMBER",
            "mobileNetwork": "mobileNetwork",
            "routingProfile": "AttRtPf",
            "telephonyType": "PSTN_NUMBER",
            "isServiceNumber": false
          },
          {
            "phoneNumber": "+12056350002",
            "state": "ACTIVE",
            "isMainNumber": true,
            "telephonyType": "PSTN_NUMBER",
            "isServiceNumber": false
          },
          {
            "phoneNumber": "+12056350003",
            "state": "INACTIVE",
            "isMainNumber": false,
            "telephonyType": "PSTN_NUMBER",
            "isServiceNumber": false
          }
        ]
      }
    }
  ]
}