Chilkat Online Tools

Swift3 / Zoom API / Delete a H.323/SIP device

Back to Collection Items

func chilkatTest() {
    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    let http = CkoHttp()!
    var success: Bool

    // Adds the "Authorization: Bearer <access_token>" header.
    http.authToken = "<access_token>"

    var resp: CkoHttpResponse? = http.quickRequest("DELETE", url: "https://api.zoom.us/v2/h323/devices/:deviceId")
    if http.lastMethodSuccess == false {
        print("\(http.lastErrorText!)")
        return
    }

    print("\(resp!.statusCode.intValue)")
    print("\(resp!.bodyStr!)")
    resp = nil

}

Curl Command

curl -X DELETE
	-H "Authorization: Bearer <access_token>"
https://api.zoom.us/v2/h323/devices/:deviceId

Postman Collection Item JSON

{
  "name": "Delete a H.323/SIP device",
  "request": {
    "method": "DELETE",
    "header": [
    ],
    "url": {
      "raw": "{{baseUrl}}/h323/devices/:deviceId",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "h323",
        "devices",
        ":deviceId"
      ],
      "variable": [
        {
          "key": "deviceId",
          "value": "quis officia in reprehenderit",
          "description": "(Required) The device ID."
        }
      ]
    },
    "description": "A H.323 or SIP device can make a video call to a [Room Connector](https://support.zoom.us/hc/en-us/articles/201363273-Getting-Started-With-H-323-SIP-Room-Connector) to join a Zoom cloud meeting. A Room Connector can also call out to a H.323 or SIP device to join a Zoom cloud meeting. Use this API to delete a H.323/SIP device from your Zoom account.<br><br>\n**Scopes:** `h323:write:admin`<br>\n\n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Light`<br>"
  },
  "response": [
    {
      "name": "You do not have the permission to delete this device.",
      "originalRequest": {
        "method": "DELETE",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/h323/devices/:deviceId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "h323",
            "devices",
            ":deviceId"
          ],
          "variable": [
            {
              "key": "deviceId",
              "value": "quis officia in reprehenderit",
              "description": "(Required) The device ID."
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    },
    {
      "name": "H.323/SIP device deleted.",
      "originalRequest": {
        "method": "DELETE",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/h323/devices/:deviceId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "h323",
            "devices",
            ":deviceId"
          ],
          "variable": [
            {
              "key": "deviceId",
              "value": "quis officia in reprehenderit",
              "description": "(Required) The device ID."
            }
          ]
        }
      },
      "status": "No Content",
      "code": 204,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    },
    {
      "name": "H.323 device does not exist: {deviceId}.",
      "originalRequest": {
        "method": "DELETE",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/h323/devices/:deviceId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "h323",
            "devices",
            ":deviceId"
          ],
          "variable": [
            {
              "key": "deviceId",
              "value": "quis officia in reprehenderit",
              "description": "(Required) The device ID."
            }
          ]
        }
      },
      "status": "Multiple Choices",
      "code": 300,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    },
    {
      "name": "H.323/SIP device not found.",
      "originalRequest": {
        "method": "DELETE",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/h323/devices/:deviceId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "h323",
            "devices",
            ":deviceId"
          ],
          "variable": [
            {
              "key": "deviceId",
              "value": "quis officia in reprehenderit",
              "description": "(Required) The device ID."
            }
          ]
        }
      },
      "status": "Not Found",
      "code": 404,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}