API_003 Get Player Balance
POST
https://prod.phl8268.com/panel/api/integration/getBalancesEndpoint for merchant to query player balances from PHL.
Envelope
Please encode the following parameters into JSON, then encode them using Base64 and put them into the data field of a generic request/response. Signature: refer to Signature Description.
Request Schema
| Property | Field Type | Mandatory | Description | Sample value |
|---|---|---|---|---|
| username | String | Y | Username used from the platform | JOHNDOE |
Response Schema
| Property | Field Type | Mandatory | Description | Sample value |
|---|---|---|---|---|
| username | String | Y | Username used from the platform | JOHNDOE |
| balances | BalanceDto | Y | Balance records | See BalanceDto |
Request Sample
{
"username": "JOHNDOE"
}
Response Sample
{
"username": "JOHNDOE",
"balances": [
{
"balanceAmount": "0.00",
"currency": "PHP"
}
]
}