Skip to main content
POST
/
api
/
messaging
/
message-servers
/
{messageServerId}
/
agents
Add agent to server
curl --request POST \
  --url http://localhost:3000/api/messaging/message-servers/{messageServerId}/agents \
  --header 'Content-Type: application/json' \
  --data '
{
  "agentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'
{
  "success": true
}

Path Parameters

messageServerId
string<uuid>
required

Body

application/json
agentId
string<uuid>
required

Response

Agent added successfully

success
boolean