SQL Server / Zoom API / Enable SIP phone
Back to Collection Items
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
DECLARE @iTmp0 int
-- Important: Do not use nvarchar(max). See the warning about using nvarchar(max).
DECLARE @sTmp0 nvarchar(4000)
-- This example assumes the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @http int
-- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
DECLARE @success int
DECLARE @req int
-- Use "Chilkat_9_5_0.HttpRequest" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.HttpRequest', @req OUT
EXEC sp_OASetProperty @req, 'HttpVerb', 'POST'
EXEC sp_OASetProperty @req, 'Path', '/v2/sip_phones'
EXEC sp_OASetProperty @req, 'ContentType', 'multipart/form-data'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'domain', 'enim adipisicing sunt nostrud minim'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'register_server', 'enim adipisicing sunt nostrud minimquis eu Ut ipsum'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'proxy_server', 'enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officia'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'user_name', 'enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt in'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'password', 'enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur do'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'authorization_name', 'enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur doculpa esse elit aliquip'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'user_email', 'enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur doculpa esse elit aliquipQeCAO@apAzxdTgbybZeD.ptfm'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'voice_mail', 'enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur doculpa esse elit aliquipQeCAO@apAzxdTgbybZeD.ptfmsit proident ut exercitation'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'transport_protocol', 'enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur doculpa esse elit aliquipQeCAO@apAzxdTgbybZeD.ptfmsit proident ut exercitationTCP'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'register_server2', 'enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur doculpa esse elit aliquipQeCAO@apAzxdTgbybZeD.ptfmsit proident ut exercitationTCPcupidatat commodo ad enim'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'transport_protocol2', 'enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur doculpa esse elit aliquipQeCAO@apAzxdTgbybZeD.ptfmsit proident ut exercitationTCPcupidatat commodo ad enimAUTO'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'proxy_server2', 'enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur doculpa esse elit aliquipQeCAO@apAzxdTgbybZeD.ptfmsit proident ut exercitationTCPcupidatat commodo ad enimAUTOid do'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'register_server3', 'enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur doculpa esse elit aliquipQeCAO@apAzxdTgbybZeD.ptfmsit proident ut exercitationTCPcupidatat commodo ad enimAUTOid dooccaeca'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'transport_protocol3', 'enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur doculpa esse elit aliquipQeCAO@apAzxdTgbybZeD.ptfmsit proident ut exercitationTCPcupidatat commodo ad enimAUTOid dooccaecaUDP'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'proxy_server3', 'enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur doculpa esse elit aliquipQeCAO@apAzxdTgbybZeD.ptfmsit proident ut exercitationTCPcupidatat commodo ad enimAUTOid dooccaecaUDPsint aute'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'registration_expire_time', 'enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur doculpa esse elit aliquipQeCAO@apAzxdTgbybZeD.ptfmsit proident ut exercitationTCPcupidatat commodo ad enimAUTOid dooccaecaUDPsint aute60'
EXEC sp_OAMethod @req, 'AddHeader', NULL, 'Authorization', 'Bearer <access_token>'
DECLARE @resp int
EXEC sp_OAMethod @http, 'SynchronousRequest', @resp OUT, 'api.zoom.us', 443, 1, @req
EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
IF @iTmp0 = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @req
RETURN
END
EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT
PRINT @iTmp0
EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @req
END
GO
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-H "Content-Type: multipart/form-data"
--form 'domain=enim adipisicing sunt nostrud minim'
--form 'register_server=enim adipisicing sunt nostrud minimquis eu Ut ipsum'
--form 'proxy_server=enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officia'
--form 'user_name=enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt in'
--form 'password=enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur do'
--form 'authorization_name=enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur doculpa esse elit aliquip'
--form 'user_email=enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur doculpa esse elit aliquipQeCAO@apAzxdTgbybZeD.ptfm'
--form 'voice_mail=enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur doculpa esse elit aliquipQeCAO@apAzxdTgbybZeD.ptfmsit proident ut exercitation'
--form 'transport_protocol=enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur doculpa esse elit aliquipQeCAO@apAzxdTgbybZeD.ptfmsit proident ut exercitationTCP'
--form 'register_server2=enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur doculpa esse elit aliquipQeCAO@apAzxdTgbybZeD.ptfmsit proident ut exercitationTCPcupidatat commodo ad enim'
--form 'transport_protocol2=enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur doculpa esse elit aliquipQeCAO@apAzxdTgbybZeD.ptfmsit proident ut exercitationTCPcupidatat commodo ad enimAUTO'
--form 'proxy_server2=enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur doculpa esse elit aliquipQeCAO@apAzxdTgbybZeD.ptfmsit proident ut exercitationTCPcupidatat commodo ad enimAUTOid do'
--form 'register_server3=enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur doculpa esse elit aliquipQeCAO@apAzxdTgbybZeD.ptfmsit proident ut exercitationTCPcupidatat commodo ad enimAUTOid dooccaeca'
--form 'transport_protocol3=enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur doculpa esse elit aliquipQeCAO@apAzxdTgbybZeD.ptfmsit proident ut exercitationTCPcupidatat commodo ad enimAUTOid dooccaecaUDP'
--form 'proxy_server3=enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur doculpa esse elit aliquipQeCAO@apAzxdTgbybZeD.ptfmsit proident ut exercitationTCPcupidatat commodo ad enimAUTOid dooccaecaUDPsint aute'
--form 'registration_expire_time=enim adipisicing sunt nostrud minimquis eu Ut ipsumdolor aliquip ipsum in officiaipsum non sunt inipsum pariatur doculpa esse elit aliquipQeCAO@apAzxdTgbybZeD.ptfmsit proident ut exercitationTCPcupidatat commodo ad enimAUTOid dooccaecaUDPsint aute60'
https://api.zoom.us/v2/sip_phones
Postman Collection Item JSON
{
"name": "Enable SIP phone",
"request": {
"auth": {
"type": "oauth2"
},
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "multipart/form-data"
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "domain",
"value": "enim adipisicing sunt nostrud minim",
"description": "(Required) The name or IP address of your provider’s SIP domain. (example: CDC.WEB).",
"type": "text"
},
{
"key": "register_server",
"value": "quis eu Ut ipsum",
"description": "(Required) IP address of the server that accepts REGISTER requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address.",
"type": "text"
},
{
"key": "proxy_server",
"value": "dolor aliquip ipsum in officia",
"description": "(Required) IP address of the proxy server for SIP requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address. If you are not using a proxy server, this value can be the same as the Register Server.",
"type": "text"
},
{
"key": "user_name",
"value": "ipsum non sunt in",
"description": "(Required) The phone number associated with the user in the SIP account.",
"type": "text"
},
{
"key": "password",
"value": "ipsum pariatur do",
"description": "(Required) The password generated for the user in the SIP account.",
"type": "text"
},
{
"key": "authorization_name",
"value": "culpa esse elit aliquip",
"description": "(Required) Authorization name of the user registered for SIP Phone.",
"type": "text"
},
{
"key": "user_email",
"value": "QeCAO@apAzxdTgbybZeD.ptfm",
"description": "(Required) The email address of the user to associate with the SIP Phone. Can add `.win`, `.mac`, `.android`, `.ipad`, `.iphone`, `.linux`, `.pc`, `.mobile`, `.pad` at the end of the email (for example, `example@example.com.mac`) to add accounts for different platforms for the same user.",
"type": "text"
},
{
"key": "voice_mail",
"value": "sit proident ut exercitation",
"description": "(Required) The number to dial for checking voicemail.",
"type": "text"
},
{
"key": "transport_protocol",
"value": "TCP",
"description": "Protocols supported by the SIP provider.<br> The value must be either `UDP`, `TCP`, `TLS`, `AUTO`. (This can only be one of UDP,TCP,TLS,AUTO)",
"type": "text"
},
{
"key": "register_server2",
"value": "cupidatat commodo ad enim",
"description": "IP address of the server that accepts REGISTER requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address.",
"type": "text"
},
{
"key": "transport_protocol2",
"value": "AUTO",
"description": "Protocols supported by the SIP provider.<br> The value must be either `UDP`, `TCP`, `TLS`, `AUTO`. (This can only be one of UDP,TCP,TLS,AUTO)",
"type": "text"
},
{
"key": "proxy_server2",
"value": "id do",
"description": "IP address of the proxy server for SIP requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address. If you are not using a proxy server, this value can be the same as the Register Server, or empty.",
"type": "text"
},
{
"key": "register_server3",
"value": "occaeca",
"description": "IP address of the server that accepts REGISTER requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address.",
"type": "text"
},
{
"key": "transport_protocol3",
"value": "UDP",
"description": "Protocols supported by the SIP provider.<br> The value must be either `UDP`, `TCP`, `TLS`, `AUTO`. (This can only be one of UDP,TCP,TLS,AUTO)",
"type": "text"
},
{
"key": "proxy_server3",
"value": "sint aute",
"description": "IP address of the proxy server for SIP requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address. If you are not using a proxy server, this value can be the same as the Register Server, or empty.",
"type": "text"
},
{
"key": "registration_expire_time",
"value": "60",
"description": "The number of minutes after which the SIP registration of the Zoom client user will expire, and the client will auto register to the SIP server.",
"type": "text"
}
]
},
"url": {
"raw": "{{baseUrl}}/sip_phones",
"host": [
"{{baseUrl}}"
],
"path": [
"sip_phones"
]
},
"description": "Zoom’s Phone System Integration (PSI), also referred as SIP phones, enables an organization to leverage the Zoom client to complete a softphone registration to supported premise based PBX system. End users will have the ability to have softphone functionality within a single client while maintaining a comparable interface to Zoom Phone. Use this API to enable a user to use SIP phone.<br><br>\n**Prerequisites**:\n* Currently only supported on Cisco and Avaya PBX systems. \n* The account owner or account admin must first enable SIP Phone Integration by contacting the [Sales](https://zoom.us/contactsales) team.<br> **Scope:** `sip_phone:write:admin`\n<br> \n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Light`\n\n"
},
"response": [
{
"name": "**HTTP Status Code:** `201`<br>\nSIP Phone Created.\n",
"originalRequest": {
"method": "POST",
"header": [
{
"description": "Added as a part of security scheme: oauth2",
"key": "Authorization",
"value": "<token>"
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "domain",
"value": "enim adipisicing sunt nostrud minim",
"description": "(Required) The name or IP address of your provider’s SIP domain. (example: CDC.WEB).",
"type": "text"
},
{
"key": "register_server",
"value": "quis eu Ut ipsum",
"description": "(Required) IP address of the server that accepts REGISTER requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address.",
"type": "text"
},
{
"key": "proxy_server",
"value": "dolor aliquip ipsum in officia",
"description": "(Required) IP address of the proxy server for SIP requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address. If you are not using a proxy server, this value can be the same as the Register Server.",
"type": "text"
},
{
"key": "user_name",
"value": "ipsum non sunt in",
"description": "(Required) The phone number associated with the user in the SIP account.",
"type": "text"
},
{
"key": "password",
"value": "ipsum pariatur do",
"description": "(Required) The password generated for the user in the SIP account.",
"type": "text"
},
{
"key": "authorization_name",
"value": "culpa esse elit aliquip",
"description": "(Required) Authorization name of the user registered for SIP Phone.",
"type": "text"
},
{
"key": "user_email",
"value": "QeCAO@apAzxdTgbybZeD.ptfm",
"description": "(Required) The email address of the user to associate with the SIP Phone. Can add `.win`, `.mac`, `.android`, `.ipad`, `.iphone`, `.linux`, `.pc`, `.mobile`, `.pad` at the end of the email (for example, `example@example.com.mac`) to add accounts for different platforms for the same user.",
"type": "text"
},
{
"key": "voice_mail",
"value": "sit proident ut exercitation",
"description": "(Required) The number to dial for checking voicemail.",
"type": "text"
},
{
"key": "transport_protocol",
"value": "TCP",
"description": "Protocols supported by the SIP provider.<br> The value must be either `UDP`, `TCP`, `TLS`, `AUTO`. (This can only be one of UDP,TCP,TLS,AUTO)",
"type": "text"
},
{
"key": "register_server2",
"value": "cupidatat commodo ad enim",
"description": "IP address of the server that accepts REGISTER requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address.",
"type": "text"
},
{
"key": "transport_protocol2",
"value": "AUTO",
"description": "Protocols supported by the SIP provider.<br> The value must be either `UDP`, `TCP`, `TLS`, `AUTO`. (This can only be one of UDP,TCP,TLS,AUTO)",
"type": "text"
},
{
"key": "proxy_server2",
"value": "id do",
"description": "IP address of the proxy server for SIP requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address. If you are not using a proxy server, this value can be the same as the Register Server, or empty.",
"type": "text"
},
{
"key": "register_server3",
"value": "occaeca",
"description": "IP address of the server that accepts REGISTER requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address.",
"type": "text"
},
{
"key": "transport_protocol3",
"value": "UDP",
"description": "Protocols supported by the SIP provider.<br> The value must be either `UDP`, `TCP`, `TLS`, `AUTO`. (This can only be one of UDP,TCP,TLS,AUTO)",
"type": "text"
},
{
"key": "proxy_server3",
"value": "sint aute",
"description": "IP address of the proxy server for SIP requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address. If you are not using a proxy server, this value can be the same as the Register Server, or empty.",
"type": "text"
},
{
"key": "registration_expire_time",
"value": "60",
"description": "The number of minutes after which the SIP registration of the Zoom client user will expire, and the client will auto register to the SIP server.",
"type": "text"
}
]
},
"url": {
"raw": "{{baseUrl}}/sip_phones",
"host": [
"{{baseUrl}}"
],
"path": [
"sip_phones"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "text/plain"
}
],
"cookie": [
],
"body": ""
},
{
"name": "**HTTP Status Code:** `400`<br>\nBad request.<br>\n**Error Code:** `200`<br> Permission missing: Enable SIP Phone Integration by contacting a Zoom Admin first.<br>\n**Error Code:** `300`<br>SIP Phone with the same email already exists.\n\n\n",
"originalRequest": {
"method": "POST",
"header": [
{
"description": "Added as a part of security scheme: oauth2",
"key": "Authorization",
"value": "<token>"
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "domain",
"value": "enim adipisicing sunt nostrud minim",
"description": "(Required) The name or IP address of your provider’s SIP domain. (example: CDC.WEB).",
"type": "text"
},
{
"key": "register_server",
"value": "quis eu Ut ipsum",
"description": "(Required) IP address of the server that accepts REGISTER requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address.",
"type": "text"
},
{
"key": "proxy_server",
"value": "dolor aliquip ipsum in officia",
"description": "(Required) IP address of the proxy server for SIP requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address. If you are not using a proxy server, this value can be the same as the Register Server.",
"type": "text"
},
{
"key": "user_name",
"value": "ipsum non sunt in",
"description": "(Required) The phone number associated with the user in the SIP account.",
"type": "text"
},
{
"key": "password",
"value": "ipsum pariatur do",
"description": "(Required) The password generated for the user in the SIP account.",
"type": "text"
},
{
"key": "authorization_name",
"value": "culpa esse elit aliquip",
"description": "(Required) Authorization name of the user registered for SIP Phone.",
"type": "text"
},
{
"key": "user_email",
"value": "QeCAO@apAzxdTgbybZeD.ptfm",
"description": "(Required) The email address of the user to associate with the SIP Phone. Can add `.win`, `.mac`, `.android`, `.ipad`, `.iphone`, `.linux`, `.pc`, `.mobile`, `.pad` at the end of the email (for example, `example@example.com.mac`) to add accounts for different platforms for the same user.",
"type": "text"
},
{
"key": "voice_mail",
"value": "sit proident ut exercitation",
"description": "(Required) The number to dial for checking voicemail.",
"type": "text"
},
{
"key": "transport_protocol",
"value": "TCP",
"description": "Protocols supported by the SIP provider.<br> The value must be either `UDP`, `TCP`, `TLS`, `AUTO`. (This can only be one of UDP,TCP,TLS,AUTO)",
"type": "text"
},
{
"key": "register_server2",
"value": "cupidatat commodo ad enim",
"description": "IP address of the server that accepts REGISTER requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address.",
"type": "text"
},
{
"key": "transport_protocol2",
"value": "AUTO",
"description": "Protocols supported by the SIP provider.<br> The value must be either `UDP`, `TCP`, `TLS`, `AUTO`. (This can only be one of UDP,TCP,TLS,AUTO)",
"type": "text"
},
{
"key": "proxy_server2",
"value": "id do",
"description": "IP address of the proxy server for SIP requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address. If you are not using a proxy server, this value can be the same as the Register Server, or empty.",
"type": "text"
},
{
"key": "register_server3",
"value": "occaeca",
"description": "IP address of the server that accepts REGISTER requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address.",
"type": "text"
},
{
"key": "transport_protocol3",
"value": "UDP",
"description": "Protocols supported by the SIP provider.<br> The value must be either `UDP`, `TCP`, `TLS`, `AUTO`. (This can only be one of UDP,TCP,TLS,AUTO)",
"type": "text"
},
{
"key": "proxy_server3",
"value": "sint aute",
"description": "IP address of the proxy server for SIP requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address. If you are not using a proxy server, this value can be the same as the Register Server, or empty.",
"type": "text"
},
{
"key": "registration_expire_time",
"value": "60",
"description": "The number of minutes after which the SIP registration of the Zoom client user will expire, and the client will auto register to the SIP server.",
"type": "text"
}
]
},
"url": {
"raw": "{{baseUrl}}/sip_phones",
"host": [
"{{baseUrl}}"
],
"path": [
"sip_phones"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "text/plain"
}
],
"cookie": [
],
"body": ""
},
{
"name": "**HTTP Status Code:** `404`<br>\n**Error Code:** `1001`<br> User {userId} not exist or not belong to this account.\n\n\n",
"originalRequest": {
"method": "POST",
"header": [
{
"description": "Added as a part of security scheme: oauth2",
"key": "Authorization",
"value": "<token>"
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "domain",
"value": "enim adipisicing sunt nostrud minim",
"description": "(Required) The name or IP address of your provider’s SIP domain. (example: CDC.WEB).",
"type": "text"
},
{
"key": "register_server",
"value": "quis eu Ut ipsum",
"description": "(Required) IP address of the server that accepts REGISTER requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address.",
"type": "text"
},
{
"key": "proxy_server",
"value": "dolor aliquip ipsum in officia",
"description": "(Required) IP address of the proxy server for SIP requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address. If you are not using a proxy server, this value can be the same as the Register Server.",
"type": "text"
},
{
"key": "user_name",
"value": "ipsum non sunt in",
"description": "(Required) The phone number associated with the user in the SIP account.",
"type": "text"
},
{
"key": "password",
"value": "ipsum pariatur do",
"description": "(Required) The password generated for the user in the SIP account.",
"type": "text"
},
{
"key": "authorization_name",
"value": "culpa esse elit aliquip",
"description": "(Required) Authorization name of the user registered for SIP Phone.",
"type": "text"
},
{
"key": "user_email",
"value": "QeCAO@apAzxdTgbybZeD.ptfm",
"description": "(Required) The email address of the user to associate with the SIP Phone. Can add `.win`, `.mac`, `.android`, `.ipad`, `.iphone`, `.linux`, `.pc`, `.mobile`, `.pad` at the end of the email (for example, `example@example.com.mac`) to add accounts for different platforms for the same user.",
"type": "text"
},
{
"key": "voice_mail",
"value": "sit proident ut exercitation",
"description": "(Required) The number to dial for checking voicemail.",
"type": "text"
},
{
"key": "transport_protocol",
"value": "TCP",
"description": "Protocols supported by the SIP provider.<br> The value must be either `UDP`, `TCP`, `TLS`, `AUTO`. (This can only be one of UDP,TCP,TLS,AUTO)",
"type": "text"
},
{
"key": "register_server2",
"value": "cupidatat commodo ad enim",
"description": "IP address of the server that accepts REGISTER requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address.",
"type": "text"
},
{
"key": "transport_protocol2",
"value": "AUTO",
"description": "Protocols supported by the SIP provider.<br> The value must be either `UDP`, `TCP`, `TLS`, `AUTO`. (This can only be one of UDP,TCP,TLS,AUTO)",
"type": "text"
},
{
"key": "proxy_server2",
"value": "id do",
"description": "IP address of the proxy server for SIP requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address. If you are not using a proxy server, this value can be the same as the Register Server, or empty.",
"type": "text"
},
{
"key": "register_server3",
"value": "occaeca",
"description": "IP address of the server that accepts REGISTER requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address.",
"type": "text"
},
{
"key": "transport_protocol3",
"value": "UDP",
"description": "Protocols supported by the SIP provider.<br> The value must be either `UDP`, `TCP`, `TLS`, `AUTO`. (This can only be one of UDP,TCP,TLS,AUTO)",
"type": "text"
},
{
"key": "proxy_server3",
"value": "sint aute",
"description": "IP address of the proxy server for SIP requests. Note that if you are using the UDP transport protocol, the default port is 5060. If you are using UDP with a different port number, that port number must be included with the IP address. If you are not using a proxy server, this value can be the same as the Register Server, or empty.",
"type": "text"
},
{
"key": "registration_expire_time",
"value": "60",
"description": "The number of minutes after which the SIP registration of the Zoom client user will expire, and the client will auto register to the SIP server.",
"type": "text"
}
]
},
"url": {
"raw": "{{baseUrl}}/sip_phones",
"host": [
"{{baseUrl}}"
],
"path": [
"sip_phones"
]
}
},
"status": "Not Found",
"code": 404,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "text/plain"
}
],
"cookie": [
],
"body": ""
}
]
}