Details of settlemented transactions
Service to return the details of successfully completed transactions
3. Get details
Send the request for transaction details by filtering the transaction limit 9page, size on one-time request and transaction date interval on the request parameter.
Sample request : https://ecommerce.golomtbank.com/api/getSettlementDetails?page=0&size=50&start=2020-07-29&end=2022-08-31
{
"checksum": "string",
"token": "string",
"merchantId" : "string"
}
Parameter definition
Parameters | Type | Definition |
---|---|---|
checksum | String | checksum = merchantId + tokenId |
token | String | Value sent by bank to represent the card information. |
merchantID | String | Merchant’s number. |
Create the Checksum by encrypting merchantId + tokenId with the unique number given to the organization. If the data is incorrect and/or the unique number is incorrect, the request is unsuccessful.
Response for successful transaction
{
"content": [
{
"id": 2184720,
"merchantId": "000000000087050",
"terminalId": "13161272",
"batchNumber": "000001",
"invoiceNumber": "000001",
"cardNumber": "515023******6617",
"token": "83adf6f7c027501e0f08a2b8646636e4f2663a8dc25cc60efa44aeee6418fe25",
"amount": "100",
"merchantInvoice": "6",
"respCode": "00",
"respDesc": "Амжилттай",
"tranTime": "170034",
"tranDate": "0729",
"sysReference": "221017684444",
"approvalCode": "255544",
"freeText1": null,
"freeText2": "CHECKED",
"freeText3": null,
"requestDate": "2022-07-29T09:00:34.000+0000",
"reversedDate": null,
"checkedDate": "2022-07-29T15:01:12.847+0000",
"transferStatus": "NEW"
}
],
"pageable": {
"first": true,
"last": true,
"totalPages": 1,
"totalElements": 1
}
}