Channel App

Ticket channel app.

Channel Apps
- Channel Apps Manage
GET channelapp/apps
GET channelapp/apps/{id}
Model
Channel App JSON Format

Channel App is represented as simple flat JSON objects with the following keys:

Name Type Description
id string Id of the channel.
IsVirtual bool Whether it is a virtual app or a real app.
MessageWebhookUrl string Webhook URL for replying.
IconUrl string URL of channel icon.
Order integer
Endpoint
Get the list of Channel Apps

GET channelapp/apps

Parameters:
No Parameters
Response:

An array of   Channel App

Example

Sample Request:

curl https://api15.comm100.io/v4/channelapp/apps \
-X 'GET' \
-H 'Authorization: Bearer {access_token}' \

Response:

 HTTP/1.1 200 OK

[{"id":"Chat","IsVirtual":false,"MessageWebhookUrl":"https://autoapi.comm100dev.io/EmailApp/webhook.aspx","IconUrl":"https://myurl.com","Order":1}]
Get a single Channel App

GET channelapp/apps/{id}

Parameters:
No Parameters
Response:
Example

Sample Request:

curl https://api15.comm100.io/v4/channelapp/apps/Chat \
-X 'GET' \
-H 'Authorization: Bearer {access_token}' \

Response:

 HTTP/1.1 200 OK

{"id":"Chat","IsVirtual":false,"MessageWebhookUrl":"https://autoapi.comm100dev.io/EmailApp/webhook.aspx","IconUrl":"https://myurl.com","Order":1}