/v1/transaction/round

Retrieve transaction history for a specific game round

GET /v1/transaction/round

Returns all related transaction details (bets, wins, refunds, etc.) associated with a specific round ID. Useful for debugging round integrity, auditing, or support inquiries.

Headers

Name
Value

Authorization

Bearer <API_TOKEN>

Content-Type

application/json

Accept

application/json

Parameters

Field
Data Type
Meaning
Mandatory

playerExternalId

string

Player’s unique ID on the operator side

Required

roundId

string

Unique game round ID

Required

providerId

number

Game provider ID

Required

gameCode

string

Internal game code of the title

Required

Response

{
  "success": true,
  "message": "OK",
  "data": [
    {
      "url": "http://.../gs2c/parentRoundHistoryDetails.do?playSessionId=1252737599"
    }
  ]
}
Field
Data Type
Meaning

success

boolean

Indicates whether the API call succeeded

message

string

Textual confirmation of the API call

data

array

Array of objects containing URL details

url

string

URL to fetch detailed round history for a specific play session

Last updated