Get Transaction Callover Report

To fetch a report detailing transaction callover information, you can send a GET request to the following endpoint:

GET /api/Report/v1/GetTransactionCallOverReport

The request query should contain the necessary parameters, such as the date referenceNumber or instrumentNumber to specify the exact report needed. This API streamlines the process of obtaining transaction callover reports, offering an efficient means of managing and accessing transaction-related data.

All in-branch transactions are included, excluding transactions from channels and end-of-day transactions.

Headers

NameValue

Content-Type*

application/json

Authorization*

Bearer <token>

Request-Reference

{unique-reference}

Query Parameter

NameData Type (length)Description

referenceNumber

string

The reference number for the transaction

instrumentNumber

string

The instrument number related to the transaction

Here is an example request and response with a sample payload sent to the endpoint in Curl format.

Sample Request
curl --location -g '{{baseurl}}/api/Report/v1/GetTransactionCallOverReport?AccountNumber=1000002992&PostingReferenceNumber=4945858&InstrumentNumber=0002&EntryCode=100&BatchCode=001&FinancialDateFrom=2022-01-01&FinancialDateTo=2022-03-09&StartDate=2022-01-01&EndDate=2022-03-09&PageNumber=1&PageSize=10&SortColum=StartDate&Direction=asc' \
--header 'Authorization: bearer {token}' \
--header 'request-reference: {unique_reference}' \
--header 'Content-Type: application/json' \
--data ''
Respose: 200
{
  "status": true,
  "message": "string",
  "data": {
    "attachment": "string",
    "fileName": "string",
    "contentType": "string"
  }
}

Last updated