Redirect Method
  • 21 Feb 2025
  • 1 Minute to read
  • Dark
    Light

Redirect Method

  • Dark
    Light

Article summary

This method processes APM transactions by redirecting the customer directing to the payment provider without using our payment wall.

If you operate your own cashier system and wish to enforce a specific alternative payment method, you can specify the payment method in your request. By specifying the desired payment method, users will be directed to the designated APM during the payment process. This approach empowers you to maintain precise control over the choice of alternative payment methods for each transaction, ensuring alignment with your business requirements and preferences.

Sequence Diagram of the Redirect Method

mermaidredirect.svg

Step 1: Create Payment Token
To initiate the payment process, you start by creating a payment token. This involves submitting the transaction type, the specified APM (using the ForcePayment tag), amount, and some customer details. Additionally, you need to provide the URL to which the user should be redirected upon completing the payment process.

Create a payment token by calling:

POST /api/hpptoken/create Try it here


Step 2. Redirect with the payment token

The response will include a redirectURL. You need to redirect the customer to the provided URL where they can securely enter their payment details.

sample response
{
    "pspid": 718862,
    "token": "c3978b1cacc4485ba00f1a575b07ebd1",
    "redirectUrl": "https://payments.dev.apspglobal.com/merchanttools/api/Redirect/Loader?token=c3978b1cacc4485ba00f1a575b07ebd1",
    "isSuccess": true,
    "errorMessage": null
}

Step 3. Customer is redirected to the third party payment provider

Upon reaching this stage of the transaction, the customer is directed to the login screen of the designated third-party payment provider. Here, the customer must utilize their unique credentials to log in and authenticate themselves, facilitating the completion of the transaction securely and efficiently.

Step 4. Customer is redirected back to the merchant

After the customer successfully completes the transaction, they will be automatically redirected to the URL that was initially provided when creating the payment token.


Was this article helpful?