> For the complete documentation index, see [llms.txt](https://docs.udara360.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.udara360.io/udara360-docs-1/reports/report-api/get-customer-transaction-receipt.md).

# Get Customer Transaction Receipt

##

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

<mark style="color:blue;">`GET`</mark> `/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<mark style="color:red;">\*</mark>  | `application/json`   |
| Authorization<mark style="color:red;">\*</mark> | `Bearer <token>`     |
| Request-Reference                               | `{unique-reference}` |

**Query Parameter**

<table><thead><tr><th width="187">Name</th><th width="172">Data Type (length)</th><th>Description</th><th data-hidden>Required</th></tr></thead><tbody><tr><td><code>transactionID</code></td><td>string</td><td>The customer's transcation identifier</td><td></td></tr></tbody></table>

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

<details>

<summary>Sample Request</summary>

```json
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 ''
```

</details>

<details>

<summary>Respose: <code>200</code></summary>

```json
//request successful
```

</details>
