Skip to Content
TransferJDB Platform APIReport-RelatedAction 85: Query Side Bet Result

Action 85: Query Side Bet Result

Function Description

  • Returns a short-lived URL to the Side Bet report.
  • Without historyId: uid and machineType must be specified, and the URL opens the player’s Side Bet report home page.
  • With historyId: the URL opens the detailed result of that single Side Bet transaction. uid and machineType are not required and are ignored.
  • historyId must be the Side Bet ID returned by Action 84. Do not send the related main-game gameHistoryId.
  • The result URL is valid for 30 seconds.
  • About socket timeout setting, it is recommended to set more than 40 seconds for testing environment and 20 seconds for production environment.

Parameter

ParameterFormatMandatoryDescription
actionIntegerY85
tsLongYCurrent system time
parentString(50)YAgent ID
uidString(50)NPlayer ID
“uid” is needed when “historyId” is not specified.
historyIdString(200)NUnique Side Bet transaction ID returned by Action 84
“historyId” is needed when searching a single Side Bet detail.
langStringNLanguage; unsupported languages use English by default

See Language Code
showUidIntegerNShow player ID
0: hide (default for GH2/GH3 domains)
1: show (default for other domains)
machineTypeIntegerNMachine Type
“machineType” is needed when “historyId” is not specified.

Example

Query a single Side Bet record:

{ "action": 85, "ts": 1785721200000, "parent": "testag", "historyId": "sidebet_5250234694590", "lang": "en", "showUid": 1 }

Open the Side Bet report home page:

{ "action": 85, "ts": 1785721200000, "parent": "testag", "uid": "testpl01", "machineType": 14099, "lang": "en", "showUid": 1 }

Return Results

ParameterFormatDescription
statusString(4)Success: 0000

Error: See Error Codes in Appendix
dataJSON ArraySide Bet result URL
err_textString(255)Error message

Data Object

ParameterFormatDescription
pathStringSide Bet result URL, valid for 30 seconds

Response Example

{ "status": "0000", "data": [ { "path": "https://xxx.xxx.xxx/sidebet?..." } ] }
Last updated on