Skip to content

Query Outstanding GET

This api is check transactions to be outstanding.

Authorization

Transfer uses Basic Authentication with your agent credentials. (Authentication)

HTTP Request

GET {{ API_URL }}/outstanding?username={{ username }}

Content Type

Type: application/json

Parameter Description

PropertyTypeRequiredDescription
usernamestringRequiredMember username

Response Description

PropertyTypeRequiredDescription
reqIdstringRequiredUnique reference for each request
codenumberRequiredResponse status
messagestringRequiredAdditional information on response status
dataOutstanding[]RequiredList of current outstanding

Outstanding

PropertyTypeRequiredDescription
productIdstringRequiredProduct ID (Ref. Product List)) (Example : SLOTXO)
outstandingnumberRequiredUnfinished bet amount
txnsSportTransaction[]OptionalPending sport transactions

Sport Transaction

PropertyTypeRequiredDescription
idstringRequiredTransacion ID (Example : PAR5659622569)
stakestringRequiredTotal stake of the ticket (Example : 10.00)
oddsnumberRequiredTotal odds of the ticket (Example : 4.515)
subTxnsSportSubTransaction[]RequiredSub transactions of the ticket

Sport Subtransaction

PropertyTypeRequiredDescription
idstringRequiredTransacion ID (Example : 182719729)
oddsnumberRequiredTransacion odds (Example : 1.71)
sidestringRequiredChoosen side
matchDateTimestringRequiredMatch start time (Example : 2022-09-28T23:00:00.000+00:00)
leaguenamestringRequiredLeague name (Example : FINLAND VEIKKAUSLIIGA (PLAY OFF))
hometeamstringRequiredHome team name (Example : Inter Turku)
awayteamstringRequiredAway team name (Example : Haka)
resultstringRequiredMatch result
scorestringRequiredMatch score (Example : '','0-0')

Sport Side

ValueDescription
1Home/Over/Odd
2Away/Under/Even
XDraw

Sport Result

Value
Match not over
Win all
Lost all
Win half
Lost half
Draw
Unknown

JSON response example:

json
{
  "reqId": "a784a34b-1e67-4102-bf66-deb068f6dd02",
  "code": 0,
  "message": "Success",
  "data": [
    {
      "productId": "SLOTXO",
      "outstanding": 3000
    }
  ]
}