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


## List Pending Transactions



This api is used to list all the pending collect requests


###   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 upiListPendingTransactions for this call.
      - Value: value: upiListPendingTransactions
      - Tags: String, Mandatory
    - **Limit**:
      - Description: Maximum number of rows to be returned.
      - Value: Example: 10
      - Tags: String, Mandatory
    - **Offset**:
      - Description: Offset for transactions to be returned.
      - 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: Operation performed in the SDK.
      - Value: value: upiListPendingTransactions
      - Tags: String, Mandatory
    - **Status**:
      - Description: Status of the Operation. Possible values : SUCCESS/FAILURE
      - Value: Example: SUCCESS
      - Tags: String, Mandatory
    - **Count**:
      - Description: Number of transactions
      - Value: abcde12345abcde
      - Tags: Int, Mandatory
    - **PendingTransactions**:
      - Description: List of pending transactions
      - Value:
        - **PayerVpa**:
          - Description: Payer VPA
          - Tags: String, Mandatory
        - **PayeeVpa**:
          - Description: Payee VPA
          - Tags: String, Mandatory
        - **PayeeName**:
          - Description: Payee Name
          - Tags: String, Mandatory
        - **Type**:
          - Description: Type of pending transaction
          - Tags: String, Mandatory
        - **Amount**:
          - Description: Amount for the transaction. Numeric String with two decimals
          - Value: Example: 200.00
          - Tags: String, Mandatory
        - **TransactionTimestamp**:
          - Description: Time of the transaction
          - Tags: String, Mandatory
        - **GatewayTransactionId**:
          - Description: Transaction Id returned by gateway
          - Tags: String, Mandatory
        - **GatewayReferenceId**:
          - Description: Customer reference number (rrn) for the transaction
          - Tags: String, Mandatory
        - **Remarks**:
          - Description: Remarks as passed for the transaction
          - Tags: String, Optional
        - **Expiry**:
          - Description: Expiry time of the request
          - Tags: String, Mandatory
        - **RefUrl**:
          - Description: Reference url for the transaction
          - Tags: String, Optional
        - **RefCategory**:
          - Description: Ref category of the transaction
          - Value: value: upiListPendingTransactions
          - Tags: String, Optional
        - **CollectType**:
          - Description: Type of collect request
          - Tags: String, Optional
        - **SeqNumber**:
          - Description: Denotes the recurring cycle of mandate execution. Will be received only during mandate executions.
          - Tags: String, Optional
        - **AccountReferenceId**:
          - Description: Unique id for the bank account used
          - Tags: String, Optional
        - **IsVerifiedPayee**:
          - Description: Stringified boolean flag if the payee is a verified vpa
          - Value: value: upiListPendingTransactions
          - Tags: Boolean, Optional
        - **IsMarkedSpam**:
          - Description: Is the transaction initiator marked spam?
          - Tags: Boolean, Optional
      - Tags: Array of JSON, Mandatory
    - **OtherInfo**:
      - Description: Other info
      - 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





#### Code Snippets: -

#### Java Code Snippet:

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

#### Kotlin Code Snippet:

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


## Sample Code Snippets:
### Request snippets:

#### Request Code Snippet:

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

### Response snippets:

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



---

## Complete Code Reference

The following code files are referenced in the steps above:

### InappManagement.txt

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


---

## See Also

- [Pay to UPI Number](https://juspay.io/in/docs/upi-tpap-sdk/react-native/headless-process-payloads/pay-to-upi-number)
- [Collect Approve](https://juspay.io/in/docs/upi-tpap-sdk/react-native/headless-process-payloads/collect-approve)
