API_010 Remove Settled Transaction Records
POST
https://prod.phl8268.com/panel/api/integration/removeSettledTxnRecordsEndpoint for merchant after called the API_009 is to remove whatever that you have synchronized and saved successfully to your database. Thus, you won't get duplicated records from API_009 which you have already synchronized to your database.
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 | Betting ID(s) to be removed. | ["20230625175259046102", "20230625175259074103", "20230625175332872123", "20230625175332901124"] |
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 |
|---|---|---|---|---|
| bettingIds | List (String) | Y | Betting ID(s) | ["20230625175259046102", "20230625175259074103", "20230625175332872123", "20230625175332901124"] |
| code | String | Y | Betting response code. See Betting Response Code | |
| description | String | Y | Betting response description. See Betting Response Code |
Request Sample
{
"bettingIds": [
"20230625175259046102",
"20230625175259074103",
"20230625175332872123",
"20230625175332901124"
]
}
Response Sample
[]