REST API
Daily
POST/v2/Report/Daily

Daily returns a detailed transaction-level report of all transactions processed on the terminal for the current batch. All the responses have GeneralResponse section that informs about successful result or error. See Error Codes and Messages.

Body Parameters

Tpn
string
RegisterId
string
Authkey
string
SPInProxyTimeout
number
POST/v2/Report/Daily
1curl --location 'https://test.spinpos.net/v2/Report/Daily' \
2--header 'Content-Type: application/json' \
3--data '{
4 "Tpn": "",
5 "RegisterId": "",
6 "Authkey": "",
7 "SPInProxyTimeout": ""
8}'
Response

// Awaiting response…

Sample response
{
  "DailyDetails": [
    {
      "MerchantNumber": null,
      "Application": "",
      "TotalAmount": null,
      "TransactionsDailyReports": [
        {
          "Number": null,
          "ReferenceId": "",
          "CardType": "",
          "TransactionType": "",
          "Last4": "",
          "Amount": null
        }
      ]
    }
  ],
  "GeneralResponse": {
    "HostResponseCode": "00",
    "HostResponseMessage": "Approved",
    "ResultCode": "Ok",
    "StatusCode": "0000",
    "Message": "Approved",
    "DetailedMessage": "APPROVAL VTLMC1",
    "DelayBeforeNextRequest": null
  }
}