Webex · Example Payload

Webex Validatealistofmacaddress Example

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Webex Validatealistofmacaddress 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": "validateAListOfMACAddress",
  "method": "POST",
  "path": "/telephony/config/devices/actions/validateMacs/invoke",
  "summary": "Validate a list of MAC address",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "macs": [
          "ab125678cdef",
          "00005E0053B4"
        ]
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "status": "ERRORS",
        "macStatus": [
          {
            "mac": "ab125678cdef",
            "state": "AVAILABLE"
          },
          {
            "mac": "00005E0053B4",
            "state": "UNAVAILABLE",
            "errorCode": 5675,
            "message": "[Error 5675] MAC Address is in use."
          }
        ]
      }
    }
  ]
}