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

## API Version: default


# Retrieve a mandate



Retrieves an existing mandate object. Supply the unique mandate identifier. The argument should be in the query string (not in the body).

**ARGUMENTS** 


| Argument | Description |
|---|---|
| mandate REQUIRED	 | The identifier of the mandate to be retrieved e.g. /v1/mandates/MD004433221AA. Supply exactly one argument from mandate and umrn. |
| umrn REQUIRED	 | The identifier of the mandate to be retrieved e.g. /v1/mandates/umrn/ICIC7000000000272000. |


**Returns**  Returns a mandate object if a valid identifier was provided.## Endpoints:
- Sandbox: https://api-test.lotuspay.com/v1/mandates/{ID}

- Production: https://api.lotuspay.com/v1/mandates/{ID}

## 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/mandates/MD004433221AA \
   -u sk_test_XjIHowXWSI23uvjepz2X82:

```

#### Response:
```json
{
    "id": "MD004433221AA",
    "object": "mandate",
    "created": 1530224170,
    "livemode": false,
    "metadata": {
    },
    "amount_collection": 10000,
    "amount_maximum": null,
    "category_code": "L001",
    "category_description": "Loan installment amount",
    "creditor_agent_code": "HDFC",
    "creditor_agent_mmbid": "HDFC0999999",
    "creditor_agent_name": "HDFC BANK",
    "creditor_name": "LOTUSPAY SOLUTIONS PVT LTD",
    "creditor_utility_code": "NACH00000000005549",
    "date_first_collection": "2020-01-01",
    "date_final_collection": "2021-12-31",
    "debtor_account_name": "AMIT JAIN",
    "debtor_account_number": "****5678",
    "debtor_account_type": "savings",
    "debtor_agent_code": "ICIC",
    "debtor_agent_mmbid": "ICIC0000001",
    "debtor_agent_name": "ICICI BANK",
    "debtor_email": "test@lotuspay.com",
    "debtor_mobile": "9999123456",
    "debtor_pan": "******234B",
    "debtor_phone": null,
    "frequency": "MNTH",
    "instrument": "DEBIT",
    "occurrence_sequence_type": "RCUR",
    "reference1": "CUSTOMER_123",
    "reference2": "PRODUCT_ABC",
    "reference3": null,
    "reference4": null,
    "reference5": null,
    "variant": "emandate_api",
    "class": "internal",
    "date_acknowledged": "2018-06-15",
    "date_responded": "2018-06-17",
    "date_cancelled": null,
    "mandate_request_id": "SC004433221AA001",
    "reason_code": "ac01",
    "reason_description": "ACK Default Accept Reason",
    "status": "active",
    "status_cancel": null,
    "umrn": "ICIC7000000000272000",
    "bank_account": "BA004433DD55AA",
    "customer": "CU00443311DDAA",
    "nach_profile": "NP00AABBCC1122",
    "source": "SC004433221AA"
  }

```

## API Responses:
