---
page_source: https://juspay.io/in/docs/ec-headless/cordova/payloads/wallets--redirection
page_title: Wallets - Redirection
---


# Redirection Wallet Transactions




### Step 1 Get Payment Methods


This operation retrieves information about all the available payment methods available for the merchant through Juspay. Consume data for all enabled wallets on the Juspay platform from the response and display them on the Checkout page.




### Step 2 Wallet Txn - Redirection


In redirection flow, the user is taken to the wallet’s URL for payment where the user is required to enter his credentials and log in. The user needs to link his wallet for each transaction.

Create Payload to call Process API for Wallet Payments. Refer code snippets on the right for reference.


## Request Payload
- **RequestId**:
  - Description: Unique uuid-v4 string
    
    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: Must be walletTxn for wallet Process calls.
      - Tags: String, Mandatory
    - **OrderId**:
      - Description: order id pertaining to the order for which the payment is started.
      - Tags: String, Mandatory
    - **PaymentMethod**:
      - Description: The actual payment method that was selected by the user. For WALLET transactions, it must be one of the instruments from Payment method [table](https://docs.juspay.in/api-reference/docs/express-checkout/wallet-payment).
      - Tags: String, Mandatory
    - **ClientAuthToken**:
      - Description: Required for client side authentication
      - Tags: String, Mandatory
    - **ShowLoader**:
      - Description: To show a loader for the processing state.
      - Tags: Boolean
    - **Offers**:
      - Description: The key offers should be passed only when juspay offers are being used. The value for this key can set as the offerID which is received from /v1/offers/list api
      - Tags: Array of Strings
  - Tags: JSON, Mandatory



> **Note**
> **Default value for 'showLoader' param, when not passed, is set to true.** 



