Activity Tracker APIs
Send data to server
API Documentation
Ranking Key
Staff History
Workspace
Sessions
Orders
Activity Tracker APIs
Send data to server
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
Body
application/json
Response
200
application/json
Data sent successfully
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"
}
]
}