Create a Bot
Create a Bot
Parameter
Accessible via URL https://api.channel.io/open/v3/bots
and HTTP POST
The POST request body requires a
Bot
object. This method acceptsapplication/json
.
Example
POST https://api.channel.io/open/v3/bots
{
"name": "channelBot"
}
Response
Returns a newly created Bot object.
{
"bot": {
"id": "String",
"channelId": "String",
"name": "String",
"createdAt": 1527153746552,
"avatarUrl": "String",
"color": "String"
}
}
Updated about 2 years ago