Fetch transactions

GET /history/transactions

Response data is not real time and may have a delay. If an expected transaction is missing from the response it may be processing, and will not be available for some time.

Headers

Query parameters

Responses

GET /history/transactions
curl \
 -X GET BASE_URL/history/transactions?filters=%7B%7D \
 -H "Signature: string" \
 -H "Public-Key: string"
Response examples (200)
{
  "entries": [
    {
      "amount": 42.0,
      "brandId": "string",
      "cashAmount": 42.0,
      "country": "string",
      "createTimestamp": 42,
      "currency": "string",
      "freeSpinsCampaignId": "string",
      "gameId": "string",
      "gameRoundId": "string",
      "isFeatureBuy": true,
      "isGameRoundFinished": true,
      "isRollbackRefunded": true,
      "jackpotAmount": 42.0,
      "platform": "string",
      "playerId": "string",
      "referenceTransactionId": "string",
      "resolveTimestamp": 42,
      "sessionId": "string",
      "transactionId": "string",
      "transactionResponseBalance": 42.0,
      "transactionResponseCurrency": "string",
      "transactionResponseStatus": "APPLIED",
      "transactionType": "withdraw"
    }
  ],
  "page": 42,
  "pageSize": 42,
  "totalPages": 42,
  "totalRows": 42
}
Response examples (400)
{
  "code": "ERROR_UNKNOWN_ERROR",
  "description": "string",
  "traceId": "string"
}
Response examples (401)
{
  "code": "ERROR_INVALID_SIGNATURE",
  "description": "string",
  "traceId": "string"
}
Response examples (500)
{
  "code": "ERROR_UNKNOWN_ERROR",
  "description": "string",
  "traceId": "string"
}