POST
/
activity
/
sendData
curl --request POST \
  --url https://api.readmin.app/activity/sendData \
  --header 'Content-Type: application/json' \
  --header 'loader-id: <api-key>' \
  --data '{
  "events": [
    {
      "user": "<string>",
      "type": "<string>",
      "date": 123,
      "message": "<string>",
      "to": "<string>"
    }
  ]
}'
{
  "success": true,
  "queuedActions": [
    {
      "_id": "<string>",
      "internalGameId": "<string>",
      "type": "kick",
      "userId": "<string>",
      "message": "<string>",
      "created": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

loader-id
string
header
required

Body

application/json
events
object[]
required

Response

200
application/json
Data sent successfully
success
boolean
queuedActions
object[]