Use our Redirect Component to handle the redirect to the PayMe app. When adding PayMe to your existing Components integration, you also need to:
- Show PayMe in your payment form.
- Handle the redirect result when the shopper returns to your app.
PayMe is supported from Android Components version 4.0.0.
Requirements
Requirement | Description |
---|---|
Integration type | Make sure that you have an existing Anddroid Components integration. |
Setup steps | Before you begin, add PayMe in your test Customer Area. |
Show PayMe in your payment form
Include PayMe in the list of available payment methods.
-
Specify in your /paymentMethods request:
- countryCode: HK.
- amount.currency: HKD.
The response contains paymentMethod.type
: payme.
Make a payment
- When the shopper selects the button to pay, make a /payments request, specifying:
Parameter name | Required | Description |
---|---|---|
paymentMethod.type |
payme | |
returnURL |
The URL to redirect the shopper back to after they complete the payment. Get this URL from the Component in the RedirectComponent.getReturnUrl(context) . |
|
channel |
To determine whether the shopper is using a desktop, laptop or mobile. | |
lineItems.quantity
|
The number of items. Must be between 0 and 9999. | |
lineItems.sku
|
The stock keeping unit. Maximum length 200 characters. | |
lineItems.description
|
The order description to display to the shopper. Maximum length 200 characters. | |
lineItems.amountIncludingTax
|
Item amount including the tax, in minor units. Must be between 1 and 100000000. | |
lineItems.itemCategory
|
The item category. Maximum length 200 characters. |
The /payments response contains:
-
action
: Object containing information about the redirect.~~~~ json { "resultCode": "RedirectShopper", "action": { "expiresAt": "2021-01-30T16:09:09Z", "paymentMethodType": "payme", "url": "https://qr.payme.hsbc.com.hk/...", "method": "GET", "type": "redirect" } } ~~~~
- Pass the
action
object to your client app. You need this to initialize the Redirect Component.
Handle the redirect
-
Use the Redirect Component to redirect the shopper to PayMe.
-
After the shopper returns to your app, make a POST /payments/details request from your server, providing:
details
: TheactionComponentData.details
object from the Redirect Component.
You receive a response containing:
resultCode
: Use this to present the payment result to your shopper.pspReference
: Our unique identifier for the transaction.
See the Android Components integration guide to get the payment outcome and show your shopper the result of the payment.
Test and go live
Use the PayMe sandbox to test your integration. You do not need to use the PayMe app to test using the sandbox.
Use the amounts specified below to simulate different payment outcomes.
Amount ending in | Result | Description |
---|---|---|
30 or 81 | Authorised | Successful payment. |
77 or 90 | OfferCancelled | The payment request expired after PayMe's default expiry time of ten minutes. |
40 or 44 | Error | There was an error when creating the payment request. |