curl --request POST \
--url http://localhost:3000/api/messaging/central-channels/{channelId}/agents \
--header 'Content-Type: application/json' \
--data '{
"agentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}'
{
"success": true,
"message": "<string>"
}
Add an agent to a specific channel
curl --request POST \
--url http://localhost:3000/api/messaging/central-channels/{channelId}/agents \
--header 'Content-Type: application/json' \
--data '{
"agentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}'
{
"success": true,
"message": "<string>"
}
Agent added successfully
The response is of type object
.
Was this page helpful?