Create a Channel Provider
HTTPS Method |
POST |
URI |
https://<server>/adminapi/channelProvider |
Example URI |
https://uccx-server/adminapi/channelProvider |
Content Type |
Application/XML, Application/JSON |
HTTPS Success Code |
201 |
HTTPS Failure Codes |
400, 412, 500 |
Error Codes |
— |
Success Response
HTTPS/1.1 201 CREATED
https://uccx-server/adminapi/channelProvider/8
Restriction
You can create only one channel provider of a given type in Unified CCX.
Sample Input XML— POST
<?xmlversion="1.0"encoding="UTF-8"standalone="yes"?>
<channelProvider>
<type>email</type>
<mailserverType>microsoft</mailserverType>
<proxyType>none</proxyType>
<useHttpProxy>false</useHttpProxy>
<send>
<fqdn>host.example.com</fqdn>
<port>465</port>
<protocol>SMTP</protocol>
</send>
<receive>
<fqdn>host.example.com</fqdn>
<port>993</port>
<protocol>IMAP</protocol>
</receive>
<description>This is a channel provider.</description>
</channelProvider>