Void the ticket

This request is made when ticket is voided.

Request fields:

AttributeData TypeDescription

operator

string

Name of the operator as registered on the system

ticket_id

string

Ticket id

tax

integer

Player withholding tax. Should be in integer format (cents). If you have player withholding tax equals to 4.55 then tax value should be 455

payout

integer

Ticket payout. Should be in integer format (cents). For payout 30.45 the value will be 3045

Sample request:

{
    "action": "ticket_void", 
    "data": {
        "operator": "operator-code",
        "ticket_id": "1330556611374148608",
        "tax": 50,
        "payout": 1000
    }
}

Sample response:

Response: 200
Doesn't require any payload

Last updated