Reconcile
URL Endpoint: https://easypay5.com/APIcardProcREST/v1.0.0/Query/Reconcile
Request Method: POST
Headers:
Session Key is passed to the API via the header:
Content-Type: application/json
Accept: application/json
SessKey: A1842D663E9A4A72XXXXXXXX303541303234373138
The reconcile Query is designed to be called at a specific periodic interval, perhaps once per day. We will return all the unique transaction IDs encountered during that interval. The query allows you to reconcile this list with data you have gathered during cardholder data interactions such as PayForm or Verifone Activity. If you find that a particular transaction is missing in your database you can call the TRANSACTION FULL DETAIL to consume any missing information.
You may specify either Credit Card or ACH transactions to be returned in the Query ( see qType parameter ) use "CARD" or "ACH". When choosing dates you can consider the StartDate to be Included in your data request however the EndDate will not. You will receive all data which runs up to but not including the end date. For example choosing the following dates will provide data for a single day on the calendar: "2024-12-01" "2024-12-02"
IMPORTANT: Do not call this method more than once a day. Excessive queries can cause your endpoint to be blocked. The max date range for this method is 31 days. The max records returned is 20,000. If you notice that the NumRecords returned equals 20000 then this means you have maxed out your query and you should use a smaller date range.
{
"StartDate": "2024-9-01",
"EndDate": "2024-10-01",
"qType": "CARD"
}
{
"ReconcileResult": {
"ErrCode": 0,
"ErrMsg": "",
"FunctionOk": true,
"NumRecords": 2,
"RespMsg": "",
"Transactions": [
{
"Amount": 4.01,
"CreatedOn": "2024-12-11 11:19:01",
"Origin": "SDK",
"TxID": 19971,
"TxStatus": "HOST"
},
{
"Amount": 6.50,
"CreatedOn": "2024-12-11 11:20:23",
"Origin": "SDK",
"TxID": 19972,
"TxStatus": "HOST"
}
]
}
}