/v1/bonus-call/detail/:issueId

Get bonus call detail by issue ID

GET /v1/bonus-call/detail/:issueId

Retrieves detailed information about a specific bonus call using its unique issueId. This can include spin status, result, reward, and metadata such as timestamps or usage context.

Headers

Name
Value

Authorization

Bearer <API_TOKEN>

Content-Type

application/json

Accept

application/json

Query Parameters

Field
Data Type
Meaning
Mandatory

issueId

string

ID of the bonus call issued by our API

Required

Response

{
  "success": true,
  "message": "OK",
  "data": {
    "issueId": "i3746",
    "operatorId": "democasino",
    "providerId": 1,
    "gameCode": "vswaysdog",
    "playerExternalId": "playerId_onOperatorSide",
    "currency": "USD",
    "bonusType": 1,
    "callAmount": 100,
    "metaData": {
      "spinAmount": 100,
      "playedAmount": 50,
      "betLevel": 1,
      "expireAt": "2025-10-08T14:00:00.000Z",
      "maxWinAmount": 1500
    },
    "status": 1,
    "totalWinAmount": 500,
    "createdAt": "2025-10-08 14:00:00"
  }
}
Field
Data Type
Meaning

success

boolean

Indicates whether the API call succeeded

message

string

Textual confirmation of the API call

data.issueId

string

Unique ID for the bonus issue

data.operatorId

string

ID of the operator

data.providerId

number

Game provider ID

data.gameCode

string

Internal game code of the title

data.playerExternalId

string

Player’s unique ID on the operator side

data.currency

string

Currency code (e.g., USD)

data.bonusType

number

Type of bonus (e.g., 1 = free spin)

data.callAmount

number

Amount related to the bonus call

data.metaData.spinAmount

number

Amount bet per spin

data.metaData.playedAmount

number

Amount already played from this bonus

data.metaData.betLevel

number

Bet level

data.metaData.expireAt

string

Expiration timestamp for the bonus (ISO 8601)

data.metaData.maxWinAmount

number

Maximum allowed win amount

data.status

number

Status of the bonus (1 = active, 2 = completed, etc.)

data.totalWinAmount

number

Total accumulated win from this bonus

data.createdAt

string

Timestamp when the bonus issue was created (YYYY-MM-DD HH:mm:ss)

Last updated