Batch Operations Data
Every supported batch operation
- Bulk Balance Inquiry
- Bulk Cashback
- Bulk Redeem
expects a different
body
object and returns a different response
object within the create batch request or get batch request. {
"playerUniqueIds": ["5024357384366","4024357384355","2124357384388"]
}
{
"method":"POST",
"operation":"balance",
"params":{},
"body":{
"playerIds": ["5024357384366","4024357384355","2124357384388"]
}
}
{
"successful":[
{
"playerUniqueId":"5024357384366",
"pointsBalance":2000,
"pointsValue":6000.0,
"currency":"USD",
"pointsName":"Points"
},
{
"playerUniqueId":"4024357384355",
"pointsBalance":3000,
"pointsValue":9000.0,
"currency":"USD",
"pointsName":"Points"
}
],
"failed":[
{
"playerUniqueId":"2124357384388",
"message":"No Player with this External ID"
}
]
}
[
{
"playerUniqueId":"string",
"transactionId":"string",
"transactionTime":"2021-07-25T14:22:42.097Z",
"amount":100,
"merchant":{
"uniqueId":"string",
"name":"string",
"branch":{
"uniqueId":"string",
"name":"string"
}
}
}
]
{
"method":"POST",
"operation":"cashback",
"params":{},
"body":[
{
"playerUniqueId":"2124357384388",
"transactionId":"231F454BB",
"transactionTime":"2021-07-25T14:22:42.097Z",
"amount":100
}
]
}
{
"successful":[
{
"playerUniqueId":"2124357384388",
"amount":"100",
"points":"1000",
"gameballTransactionId":"27535"
}
],
"failed":[]
}
[
{
"playerUniqueId":"2124357384388",
"transactionId":"231F454BB",
"transactionTime":"2021-07-25T14:40:29.121Z",
"redeemedAmount":"200",
"holdReference":null
}
]
{
"method":"POST",
"operation":"redeem",
"params":{},
"body":[
{
"playerUniqueId":"2124357384388",
"transactionId":"231F454BB",
"transactionTime":"2021-07-25T14:40:29.121Z",
"redeemedAmount":"200",
"holdReference":null
}
]
}
{
"successful":[
{
"playerUniqueId":"2124357384388",
"GameballTransactionId": "AA1F23419",
"RedeemedPoints": "200"
}
],
"failed":[]
}
Last modified 2yr ago