Amount change callback (Operator Callback API)
POST https://your-casino-site.com/gold_api/money_callback
Request Ex:
{
"agent_code": "YOUR_AGENT_CODE",
"agent_secret": "YOUR_AGENT_SECRET",
"agent_type": "Transfer",
"user_code": "test",
"provider_code": "PRAGMATIC",
"game_code": "vs20doghouse",
"type": "debit", // deposit, withdraw, debit, credit, debit_credit
"agent_before_balance": 110000,
"agent_after_balance": 113000,
"user_before_balance": 10000,
"user_after_balance": 13000,
"amount": 3000,
"msg": ""
}
Response Ex:
// Success:
{
"status": 1,
"msg": "SUCCESS",
}
// Failure:
{
"status": 0,
"msg": "INVALID_PARAMETER"
}
Last updated