Skip to main content
POST
/
calls
/
{callId}
/
messages
Send a call message
curl --request POST \
  --url https://api.readmin.app/calls/{callId}/messages \
  --header 'Content-Type: application/json' \
  --header 'loader-id: <api-key>' \
  --data '
{
  "actorId": "<string>",
  "message": "<string>"
}
'
{
  "success": true,
  "message": {
    "username": "<string>",
    "userId": 123,
    "message": "<string>",
    "id": "<string>",
    "created": "2023-11-07T05:31:56Z"
  }
}

Authorizations

loader-id
string
header
required

Path Parameters

callId
string
required

Body

application/json
actorId
string
required

Roblox id of the sending agent

message
string
required

Response

Message sent

success
boolean
message
object