Get Customer Transaction Receipt

To retrieve a customer transaction receipt, send a GET request to the following endpoint:

GET /api/Report/v1/GetTransactionReceipt The request must include a transactionID in the request query to identify the specific transaction. This process streamlines the retrieval of transaction receipts for customers and effectively manages transaction-related information.

Headers

Name
Value

Content-Type*

application/json

Authorization*

Bearer <token>

Request-Reference

{unique-reference}

Query Parameter

Name
Data Type (length)
Description

transactionID

string

The customer's transcation identifier

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/GetTransactionReceipt?transactionID=c6e9caca-fdc2-44a0-b67d-00002bfcad3f \
--header 'request-reference: {unique_reference}' \
--header 'Content-Type: application/json' \
--data ''
Respose: 200
//request successful

Last updated