---
page_title: Retrieve a list of physical mandate image objects
product: lotuspay
platform: web
page_source: https://docs.juspay.io/lotuspay/web/core-resources/retrieve-a-list-of-physical-mandate-image-objects
openapi: https://docs.juspay.io/api/swagger?document=https%3A%2F%2Fdocs.juspay.io%2Flotuspay%2Fweb%2Fcore-resources%2Fretrieve-a-list-of-physical-mandate-image-objects
llms_txt: https://docs.juspay.io/llms.txt
product_llms_txt: https://docs.juspay.io/lotuspay/llms.txt
---

## API Version: default


# **Retrieve a list of physical mandate image objects** 



You can see a list of your physical mandate image objects. The objects are returned sorted by creation date, with the most recent appearing first. You can use this API method and the limit parameter to page through objects.

**ARGUMENTS** 


| Argument | Description |
|---|---|
| limit optional, default is 100	 | A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 100. |


e.g. ?limit=10

**Returns**  A dictionary with a data property that contains an array of up to limit objects. Each entry in the array is a separate physical mandate image object. If no more objects are available, the resulting array will be empty.## Endpoints:
- Sandbox: https://api-test.lotuspay.com/v1/physical_mandate_images

- Production: https://api.lotuspay.com/v1/physical_mandate_images

## Request Type: 
GET

## Content-Type: 
application/json

## Authorization:

#### Basic Auth:
Auth example
- Value:  sk_test_XjIHowXWSI23uvjepz2X82
## Sample Code Snippets:
### Sample Request and Response:

#### Request:
```Shell
$ curl https://api-test.lotuspay.com/v1/physical_mandate_images \
   -u sk_test_XjIHowXWSI23uvjepz2X82:
```

#### Response:
```json
{
    "object": "list",
    "url": "/v1/physical_mandate_images",
    "has_more": true,
    "data": [
        {
            "id": "PS00AABBCCDDEE",
            "reference1": "loanid456",
            "mandate": "MD00AABBCCDDEE",
            "source": "SC00AABBCCDDEE"
        },
        {
            "id": "PS00AABBCCDD11",
            "reference1": "loanid123",
            "mandate": "MD00AABBCCDD11",
            "source": "SC00AABBCCDD11"
        }
    ]
}
```

## API Responses:
