Add Channel
The Add Channel request enables you to add a new channel.
URI
Copy
{{baseUrl}}/api/ovoc/v1/topology/channels/
HTTP Method
POST
Request Body
|
Parameter |
Type |
Description |
|---|---|---|
|
name |
string |
Name of the new channel. |
|
tenantId |
string |
AudioCodes provided tenantId of the Service Provider operator entity in the Live Platform database. |
|
msTenantId |
string |
The Microsoft Azure subscription Tenant Id of the channel partner. |
Example Request Body
Copy
{
"name": "BBOChannel"
"tenantId": 868,
"msTenantId": "f79a7f93-5ef7-47d2-92c8-e4570503cec3"
}
Example Response
Copy
{
"id": 1574,
"url": "ovoc/v1/topology/channels/1574"
}
HTTP Responses
| ■ | 201 Created |
|
Parameter |
Type |
Description |
|---|---|---|
|
id |
string |
Channel Id that is generated by this request. You can then use this value to retrieve the new channel using Get List of Channels and for assigning to leads (see Assign Consentless Lead to Channel). |
|
url |
string |
Rest URL for retrieving details of the new channel. |