ticket_status

Request fields:

Attribute
Data Type
Description

ticket_id

string

Ticket identification number

status

string

Ticket Status. Can be one of: open, resulted

result

string

Ticket Result. Can be one of: pending, won, lost, void

Sample ticket_status request:

{
  "type": "ticket_status",
  "data": {
    "ticket_id": "66a62424b1770731244c1f3f",
    "status": "open",
    "result" : "pending"
  }
}

open status will be sent only for tickets which were initially reserved.

Response fields:

Attribute
Data Type
Description

message

string

Response message. It can be any text

Sample response (status=200) to ticket_status request:

{
  "message": "Notification received"
}

Last updated