Agent Information & User Information
POST https://meiyunyunapi.com/gambling_api/info
Request Ex:
{
"agent_code": "YOUR_AGENT_CODE",
"agent_token": "YOUR_AGENT_TOKEN"
}
Response Ex:
// Success:
{
"status": 1,
"msg": "SUCCESS",
"agent_code": "meiyun",
"agent_balance": 1000000,
"agent_type": "Seamless",
"agent_total_debit": 100000,
"agent_total_credit": 70000,
"agent_target_rtp": 95,
"agent_real_rtp": 70,
"agent_created_at": "2023-04-26T07:00:07.000Z",
"currency": "USD",
"user_list": [
{
"user_code": "test",
"user_balance": 1000000,
"user_total_debit": 100000,
"user_total_credit": 70000,
"user_target_rtp": 95,
"user_real_rtp": 70,
},
{
"user_code": "test1",
"user_balance": 1000000,
"user_total_debit": 100000,
"user_total_credit": 80000,
"user_target_rtp": 90,
"user_real_rtp": 80,
}
]
}
// Failure:
{
"status": 0,
"msg": "INVALID_PARAMETER"
}
Last updated