# Get Transactions List

Fetch a comprehensive list of all transactions linked to your account. Filter by date, status, or shopper to easily monitor activity, track performance, and streamline reconciliation—all in one place.

## Endpoint

### Sandbox

`GET https://connect.uat.paylaterapp.com/api/paylater/merchant-portal/v2/web-checkout/transactions`&#x20;

### Production

`GET https://connect.paylaterapp.com/api/paylater/merchant-portal/v2/web-checkout/transactions`&#x20;

## Headers

* `Authorization`: Bearer {{bearer\_token}} Your Access Token (Required)

## Query Parameters

| size         | Int    | ✅ | Number of records per page                 |
| ------------ | ------ | - | ------------------------------------------ |
| page         | Int    | ✅ | Page number                                |
| search\_text | String | ❌ | Search keyword for customer name, ID, etc. |
| start\_date  | Date   | ❌ | Start date filter (YYYY-MM-DD)             |
| end\_date    | Date   | ❌ | End date filter (YYYY-MM-DD)               |
| status       | String | ❌ | Transaction status                         |

## Success Response

A paginated list of transactions with customer, loan, and status details.

## Error Responses

```
{
  "error": "Invalid API Key"
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://paylater.gitbook.io/paylater-docs/getting-started/quickstart/get-transactions-list.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
