PowerBuilder / Zoom API / Delete SIP phone
Back to Collection Items
integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_Resp
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loo_Http = create oleobject
// Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
destroy loo_Http
MessageBox("Error","Connecting to COM object failed")
return
end if
// Adds the "Authorization: Bearer <access_token>" header.
loo_Http.AuthToken = "<access_token>"
loo_Resp = loo_Http.QuickRequest("DELETE","https://api.zoom.us/v2/sip_phones/:phoneId")
if loo_Http.LastMethodSuccess = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
return
end if
Write-Debug string(loo_Resp.StatusCode)
Write-Debug loo_Resp.BodyStr
destroy loo_Resp
destroy loo_Http
Curl Command
curl -X DELETE
-H "Authorization: Bearer <access_token>"
https://api.zoom.us/v2/sip_phones/:phoneId
Postman Collection Item JSON
{
"name": "Delete SIP phone",
"request": {
"auth": {
"type": "oauth2"
},
"method": "DELETE",
"header": [
],
"url": {
"raw": "{{baseUrl}}/sip_phones/:phoneId",
"host": [
"{{baseUrl}}"
],
"path": [
"sip_phones",
":phoneId"
],
"variable": [
{
"key": "phoneId",
"value": "quis officia in reprehenderit",
"description": "(Required) Unique Identifier of the SIP Phone. It can be retrieved from the List SIP Phones API."
}
]
},
"description": "Use this API to delete a Zoom account's SIP phone. \n\n **Scopes:** `sip_phone:write:admin` <br> **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Light` \n\n**Prerequisites**: \n* Currently only supported on Cisco and Avaya PBX systems. \n* The user must enable **SIP Phone Integration** by contacting the [Zoom Sales](https://zoom.us/contactsales) team."
},
"response": [
{
"name": "**Error Code:** `200`<br>Permission missing: Enable SIP Phone Integration by contacting a Zoom Admin first.",
"originalRequest": {
"method": "DELETE",
"header": [
{
"description": "Added as a part of security scheme: oauth2",
"key": "Authorization",
"value": "<token>"
}
],
"url": {
"raw": "{{baseUrl}}/sip_phones/:phoneId",
"host": [
"{{baseUrl}}"
],
"path": [
"sip_phones",
":phoneId"
],
"variable": [
{
"key": "phoneId",
"value": "quis officia in reprehenderit",
"description": "(Required) Unique Identifier of the SIP Phone. It can be retrieved from the List SIP Phones API."
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "text/plain"
}
],
"cookie": [
],
"body": ""
},
{
"name": "**HTTP Status Code:** `204`<br>\nSIP Phone deleted.",
"originalRequest": {
"method": "DELETE",
"header": [
{
"description": "Added as a part of security scheme: oauth2",
"key": "Authorization",
"value": "<token>"
}
],
"url": {
"raw": "{{baseUrl}}/sip_phones/:phoneId",
"host": [
"{{baseUrl}}"
],
"path": [
"sip_phones",
":phoneId"
],
"variable": [
{
"key": "phoneId",
"value": "quis officia in reprehenderit",
"description": "(Required) Unique Identifier of the SIP Phone. It can be retrieved from the List SIP Phones API."
}
]
}
},
"status": "No Content",
"code": 204,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{}"
},
{
"name": "**Error Code:** `300`The SIP phone with this phoneId was not found on this account.",
"originalRequest": {
"method": "DELETE",
"header": [
{
"description": "Added as a part of security scheme: oauth2",
"key": "Authorization",
"value": "<token>"
}
],
"url": {
"raw": "{{baseUrl}}/sip_phones/:phoneId",
"host": [
"{{baseUrl}}"
],
"path": [
"sip_phones",
":phoneId"
],
"variable": [
{
"key": "phoneId",
"value": "quis officia in reprehenderit",
"description": "(Required) Unique Identifier of the SIP Phone. It can be retrieved from the List SIP Phones API."
}
]
}
},
"status": "Multiple Choices",
"code": 300,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "text/plain"
}
],
"cookie": [
],
"body": ""
}
]
}