AgentBots
Inbox API
Conversations API
Contact Labels
CSAT Survey Page
Account AgentBots
Agents
Canned Responses
Canned Response
Custom Attributes
Contacts
Automation Rule
Help Center
Conversations
Conversation Assignment
Conversation Labels
Inboxes
Integrations
Profile
Teams
Custom Filters
AgentBots
Create an Agent Bot
AgentBots
Create an Agent Bot
Create an agent bot
POST
/
platform
/
api
/
v1
/
agent_bots
curl --request POST \
--url https://app.chatwoot.com/platform/api/v1/agent_bots \
--header 'Content-Type: application/json' \
--header 'api_access_token: <api-key>' \
--data '{
"name": "<string>",
"description": "<string>",
"outgoing_url": "<string>"
}'
{
"id": 123,
"name": "<string>",
"description": "<string>",
"account_id": 123,
"outgoing_url": "<string>"
}
Authorizations
This token can be obtained by the system admin after creating a platformApp. This token should be used to provision agent bots, accounts, users and their roles.
Body
application/json
Response
200
application/json
Success
The response is of type object
.
curl --request POST \
--url https://app.chatwoot.com/platform/api/v1/agent_bots \
--header 'Content-Type: application/json' \
--header 'api_access_token: <api-key>' \
--data '{
"name": "<string>",
"description": "<string>",
"outgoing_url": "<string>"
}'
{
"id": 123,
"name": "<string>",
"description": "<string>",
"account_id": 123,
"outgoing_url": "<string>"
}