Skip to main content

API_004 Get Transfer Balance Record

POSThttps://prod.phl8268.com/panel/api/integration/getBalanceTransferRecords

Endpoint for merchant to query player transfer balance records by reference ID (ID parameter passed in from API_006) 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

PropertyField TypeMandatoryDescriptionSample value
usernameStringYUsername used from the platformJOHNDOE
merchantTxnIdStringYThird party's unique transfer ID (maximum 50 length)IG05-0000001

Response Schema

PropertyField TypeMandatoryDescriptionSample value
amountTransferredStringYAmount to transfer190.00
currencyStringYCurrency wallet transfer to / from. See System Code – CurrencyPHP
creationDateStringYCreation date in ISO 8601 with offset. Format: yyyy-MM-dd'T'HH:mm:ss'+08:00'2023-10-16T11:24:42+08:00
txnIdStringYThe unique transaction ID in our systembbebbaae-bf37-4ac0-b75c-i0ifc41a5i61
merchantTxnIdStringYThird party's unique transaction IDIG05-0000001
usernameStringYUsername used from the platformJOHNDOE
transactionTypeStringYTransaction type. See System Code – Transaction TypeTOPUP

Request Sample

{
"username": "JOHNDOE",
"merchantTxnId": "IG05-0000001"
}

Response Sample

{
"amountTransferred": "500.00",
"currency": "PHP",
"creationDate": "2023-10-16T11:24:42+08:00",
"txnId": "b9f031a8-9d9a-4805-a7e8-b19b898a90c6",
"merchantTxnId": "IG05-0000001",
"username": "JOHNDOE",
"transactionType": "TOPUP"
}