Skip to main content

API_010 Remove Settled Transaction Records

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

Endpoint 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

PropertyField TypeMandatoryDescriptionSample value
bettingIdsList (String)YBetting 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.

PropertyField TypeMandatoryDescriptionSample value
bettingIdsList (String)YBetting ID(s)["20230625175259046102", "20230625175259074103", "20230625175332872123", "20230625175332901124"]
codeStringYBetting response code. See Betting Response Code
descriptionStringYBetting response description. See Betting Response Code

Request Sample

{
"bettingIds": [
"20230625175259046102",
"20230625175259074103",
"20230625175332872123",
"20230625175332901124"
]
}

Response Sample

[]