API_008 Remove Transaction Records
POST
https://prod.phl8268.com/panel/api/integration/removeTransactionRecordsEndpoint for merchant to remove transaction records by merchant code from / to PHL. Endpoint received bettingId field from API_007 as the delete key.
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 |
|---|---|---|---|---|
| bettingIds | List (String) | Y | Bet unique ID(s) to be removed | ["20230926000001", "20230926000002", "20230927000001", "20230927000003"] |
Response Schema
The response data is a List. Entries are only returned for IDs that could not be removed normally.
| Property | Field Type | Mandatory | Description | Sample value |
|---|---|---|---|---|
| bettingId | List (String) | Y | Bet unique ID(s) | ["20230926000002", "20230927000001", "20230927000003"] |
| code | String | Y | Betting response code. See Betting Response Code | |
| description | String | Y | Description of betting response code. See Betting Response Code |
Request Sample
{
"bettingIds": [
"20230926000001",
"20230926000002",
"20230927000001",
"20230927000003"
]
}
Response Sample
[]