Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"username": "01000765204",
"amount": 100,
"timestamp":"{{timestamp}}"
}
Request Code Samples
curl --location --request POST '/v1/agent/player/reload' \
--header 'User-Agent: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Mobile Safari/537.36' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"username": "01000765204",
"amount": 100,
"timestamp":"{{timestamp}}"
}'
Responses
application/json {
"status": true,
"message": "Reload successfully",
"data": {
"transactionID": "4e54119f-a0bf-4720-b2f8-1a9102686067",
"amount": 1,
"balance": 1
}
}
Modified at 2025-12-16 09:17:43