---
page_title: Mandate transaction List
product: UPI TPAP SDK
platform: React Native
page_source: https://juspay.io/in/docs/upi-tpap-sdk/react-native/headless-process-payloads/mandate-transaction-list
llms_txt: https://juspay.io/in/docs/llms.txt
product_llms_txt: https://juspay.io/in/docs/upi-tpap-sdk/llms.txt
---


## Mandate Transaction List



This function retrieves a list of all transactions associated with a specific mandate.


###   Process Parameters



## Request Payload
- **RequestId**:
  - Description: Unique uuid-v4 string
  - Value: Example: abcd-12345-abcd-12345
  - Tags: String, Mandatory
- **Service**:
  - Description: Value: in.juspay.hyperapi
  - Tags: String, Mandatory
- **Payload**:
  - Description: Parameters required to call Hyper SDK API
  - Value:
    - **Action**:
      - Description: Operation to be performed in the SDK. Should be upiListMandateTxns for this call.
      - Value: upiListMandateTxns
      - Tags: String, Mandatory
    - **MerchantKeyId**:
      - Description: Key ID to identify the public-private key pair used for signature generation.
      - Tags: String, Mandatory
    - **StartDate**:
      - Description: The start date is the earliest date from which data entries or records should be included.
      - Tags: String, Mandatory
    - **EndDate**:
      - Description: The end date is the latest date up to which data entries or records should be included
      - Tags: String, Mandatory
    - **Limit**:
      - Description: Limit of the number of transactions to be show.
      - Tags: String, Mandatory
    - **Offset**:
      - Description: Offset of the transactions to be shown.
      - Tags: String, Mandatory
    - **Umn**:
      - Description: umn associated with the mandate.
      - Tags: String, Mandatory
    - **Signature**:
      - Description: Signature generated for the signaturePayload.
      - Tags: String, Mandatory
    - **SignaturePayload**:
      - Description: Signature payload is a stringified JSON of the details mentioned in the below table.
      - Value:
        - **Merchant_id**:
          - Description: Unique identifier associated with an account created by juspay.Ex: stock
          - Tags: String, Mandatory
        - **Customer_id**:
          - Description: Any unique reference associated with your customer.
          - Tags: String, Mandatory
        - **Timestamp**:
          - Description: Time when request is created in milliseconds.
          - Tags: String, Mandatory
      - Tags: String, Mandatory
  - Tags: JSON, Mandatory


## Response Payload
- **RequestId**:
  - Description: Unique uuid-v4 string
  - Value: Example: abcd-12345-abcd-12345
  - Tags: String
- **Service**:
  - Description: Value: in.juspay.hyperapi
  - Tags: String
- **Payload**:
  - Description: Response Parameters
  - Value:
    - **Action**:
      - Description: Value: upiListMandateTxns
      - Value: Operation to be performed in the SDK.
      - Tags: String, Mandatory
    - **Status**:
      - Description: Status of the Operation. Possible values : SUCCESS, PENDING, FAILURE
      - Tags: String, Mandatory
    - **ResponseCode**:
      - Description: Response code returned by gateway for the mandate Operation.
      - Tags: String, Mandatory
    - **ResponseMessage**:
      - Description: Response message returned by gateway for the mandate Operation.
      - Tags: String, Mandatory
    - **MandateTxnList**:
      - Description: Contains relevant mandate data
      - Value:
        - **Amount**:
          - Description: Amount for which merchant requested the mandate. Numeric String with two decimals
          - Value: eg. 25.00
          - Tags: String, Mandatory
        - **BankAccountUniqueId**:
          - Description: Unique Identifier for bank account across banks
          - Tags: String, Mandatory
        - **BankCode**:
          - Description: IIN Code for the bank
          - Tags: String, Mandatory
        - **Expiry**:
          - Description: Minutes for which request is valid
          - Tags: String, Optional
        - **GatewayReferenceId**:
          - Description: Unique Transaction Number
          - Tags: String, Mandatory
        - **GatewayResponseCode**:
          - Description: Response code returned by gateway for the transaction.
          - Tags: String, Mandate
        - **GatewayResponseMessage**:
          - Description: Response message returned by gateway for the transaction.
          - Tags: String, Mandatory
        - **GatewayTransactionId**:
          - Description: Id for the transaction realted to the mandate.
          - Tags: String, Mandatory
        - **MaskedAccountNumber**:
          - Description: Masked account number of the customer.
          - Tags: String, Mandatory
        - **PayeeName**:
          - Tags: String, Optional
        - **PayeeVpa**:
          - Tags: String, Mandatory
        - **PayerMobileNumber**:
          - Tags: String, Optional
        - **PayerName**:
          - Tags: String, Optional
        - **PayerVpa**:
          - Tags: String, Mandatory
        - **Remarks**:
          - Description: Any mandate summary. If pased in request, it will be same in response else a default value is send.
          - Tags: String, Mandatory
        - **SeqNumber**:
          - Description: Sequence number of the transaction.
          - Tags: String, Mandatory
        - **TransactionTimestamp**:
          - Description: Timestamp for the transaction done.
          - Tags: String, Mandatory
        - **Umn**:
          - Tags: String, Mandatory
      - Tags: JSON, Mandatory
    - **OtherInfo**:
      - Description: As passed in request
      - Tags: String, Optional
  - Tags: JSON
- **Error**:
  - Description: Possible values :- true/false
  - Tags: Boolean
- **ErrorMessage**:
  - Description: Error Message
  - Tags: String
- **ErrorCode**:
  - Description: Error Code
  - Tags: String
- **Event**:
  - Description: Value: process_result
  - Tags: String





## Sample Code Snippets:
### Code Snippet:

#### Request Code Snippet:

```request
{"success":false,"message":"Failed to fetch snippet"}
```

### Code Snippet:

#### Response:
```json
{"success":false,"message":"Failed to fetch snippet"}
```



---

## See Also

- [Check Mandate Status](https://juspay.io/in/docs/upi-tpap-sdk/react-native/headless-process-payloads/check-mandate-status)
- [List Transactions](https://juspay.io/in/docs/upi-tpap-sdk/react-native/headless-process-payloads/list-transactions)
