If you are using Android Components v5.0.0 or later:
This payment method requires no additional configuration.
Follow the Components integration guide and use the following module and Component names:
- To import the module: instant
- To launch and show the Component: InstantPaymentComponent
As with other redirect payment methods, you can use our Redirect Component to handle the redirect to a Trustly-hosted payment page.
When making an Trustly payment, you need additionally need to include Trustly in the list of available payment methods.
Requirements
Requirement | Description |
---|---|
Integration type | Make sure that you have built an Advanced flow Android Components integration. |
Setup steps | Before you begin, add Trustly in your Customer Area. |
Show Trustly in your payment form
Include Trustly in the list of available payment methods. You do not need to collect any information from the shopper in your payment form.
- Specify in your /paymentMethods request:
- countryCode: Any supported country/region. For example, SE
- amount.currency: Any supported currency. For example, SEK.
- amount.value: The value of the payment, in minor units.
The response contains paymentMethod.type
: trustly.
We provide logos for Trustly which you can use on your payment form. For more information, refer to Downloading logos.
Make a payment
When the shopper pays:
-
From your server, make a POST /payments request, specifying:
paymentMethod.type
: Set this to trustly.returnUrl
: URL to where the shopper should be redirected back to after they complete the payment. Get this URL from the Component in theRedirectComponent.getReturnUrl(context)
.
Expand viewCopy link to code blockCopy codecurl https://checkout-test.adyen.com/checkout/v68/payments \ -H 'x-api-key: ADYEN_API_KEY' \ -H 'content-type: application/json' \ -d '{ "merchantAccount":"ADYEN_MERCHANT_ACCOUNT", "reference":"YOUR_ORDER_NUMBER", "amount":{ "currency":"SEK", "value":1000 }, "paymentMethodpaymentComponentState.data.paymentMethod from app":{ "type":"trustly" }, "returnUrl":"adyencheckout://your.package.name" }' The /payments response includes the
action
object with information that you must use to redirect the shopper./payments responseExpand viewCopy link to code blockCopy code{ "resultCode":"RedirectShopper", "action":{ "paymentMethodType":"trustly", "method":"GET", "url":"https://checkoutshopper-test.adyen.com/checkoutshopper/checkoutPaymentRedirect?redirectData=...", "type":"redirect" } } -
Pass the
action
object to your client app.
Handle the redirect
- Use the Redirect Component to redirect the shopper to a Trustly-hosted payment page.
- 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.
curl https://checkout-test.adyen.com/checkout/v68/payments/details \ -H 'x-api-key: ADYEN_API_KEY' \ -H 'content-type: application/json' \ -d '{ "details": { "redirectResult": "eyJ0cmFuc1N0YXR1cyI6IlkifQ==" } }'
You receive a response containing:
resultCode
: Use this to present the payment result to your shopper.pspReference
: Our unique identifier for the transaction.
{ "resultCode": "Authorised", "pspReference": "PPKFQ89R6QRXGN82" }
Present the payment result
Use the resultCode that you received in the /payments/details response to present the payment result to your shopper.
The resultCode
values you can receive for Trustly are:
resultCode | Description | Action to take |
---|---|---|
Authorised | The payment was successful. | Inform the shopper that the payment has been successful. You will receive the funds in 3 days. |
Cancelled | The shopper canceled the payment while they were on the Trustly-hosted payment page. | Ask the shopper whether they want to continue with the order, or ask them to select a different payment method. |
Error | There was an error when the payment was being processed. | Inform the shopper that there was an error processing their payment. The response contains a refusalReason , indicating the cause of the error. |
Pending or Received |
The shopper has completed the payment but the final result is not yet known. | Inform the shopper that you have received their order, and are waiting for the payment to be completed. To know the final result of the payment, wait for the AUTHORISATION webhook. |
Refused | The payment was refused by the shopper's bank. | Ask the shopper to try the payment again using a different payment method. |
If the shopper failed to return to your website or app, wait for webhooks to know the outcome of the payment. The webhooks you can receive for Trustly are:
eventCode | success field | Description | Action to take |
---|---|---|---|
AUTHORISATION | false | The transaction failed. | Cancel the order and inform the shopper that the payment failed. |
AUTHORISATION | true | The shopper successfully completed the payment. | Inform the shopper that the payment has been successful and proceed with the order. |
OFFER_CLOSED | true | The shopper did not complete the payment. | Cancel the order and inform the shopper that the payment timed out. |
Test and go live
Trustly provides a test environment. For Login ID/Personal number values, you can enter any digits, following the format YYMMDD-XXXX
(for example: 111111-1111).
You can check the status of Trustly test payments in your Customer Area > Transactions > Payments.
Before you can accept live Trustly payments, you need to submit a request for Trustly in your live Customer Area.