Skip to main content
GET
/
calls
Get calls
curl --request GET \
  --url https://api.readmin.app/calls \
  --header 'loader-id: <api-key>'
{
  "success": true,
  "calls": [
    {
      "_id": "<string>",
      "groupId": "<string>",
      "runningGameId": "<string>",
      "gameId": 123,
      "placeId": 123,
      "discordChannelId": "<string>",
      "claimedBy": 123,
      "callerId": 123,
      "reportedUser": "<string>",
      "reason": "<string>",
      "messages": [
        {
          "username": "<string>",
          "userId": 123,
          "message": "<string>",
          "id": "<string>",
          "created": "2023-11-07T05:31:56Z"
        }
      ],
      "closed": true,
      "created": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

loader-id
string
header
required

Query Parameters

status
string

open | claimed | closed | all (default open)

Response

Successful operation

success
boolean
calls
object[]