# Trustly
source: https://developer.mastercard.com/mastercard-gateway/documentation/payment-methods/alt-pay-methods/bank-transfer/open-banking/trustly/index.md

Trustly is a bank transfer payment. Through Trustly, payers can make fast, simple, and secure payments directly from their bank accounts with no risk of stolen details or fraud. Payers can also make e-commerce payments and authenticate the payment through their existing online bank interface.

It is recommended that you read the [integration guidelines for browser payments](https://developer.mastercard.com/mastercard-gateway/documentation/payment-methods/imp-brow-pay-int/index.md) before building the Trustly integration.

## Prerequisites {#prerequisites}

To offer the Trustly payment method through the Mastercard Gateway,

* Be registered with your browser payments service provider
* your merchant profile on the Mastercard Gateway must be configured using the details of your account with the browser payments service provider, and
* you must have a bank account in one of the supported currencies registered against your merchant account at your browser payments service provider.

## Trustly transactions {#trustly-transactions}

Trustly supports transactions originating from multiple countries with their corresponding currencies.

|       Country       | Currency |
|---------------------|----------|
| Austria (AUT)       | EUR      |
| Germany (DEU)       | EUR      |
| Denmark (DNK)       | EUR, DK  |
| Estonia (EST)       | EUR      |
| Spain (ESP)         | EUR      |
| Finland (FIN)       | EUR      |
| Great Britain (GBR) | GBP      |
| Lithuania (LTU)     | EUR      |
| Latvia (LVA)        | EUR      |
| Netherlands (NLD)   | EUR      |
| Norway (NOR)        | EUR, NOK |
| Portugal (PRT)      | EUR      |
| Sweden (SWE)        | EUR, SEK |

## Trustly integration {#trustly-integration}

### Trustly through Hosted Checkout {#trustly-through-hosted-checkout}

Hosted Checkout integration allows you to collect payment details from your payer through an interaction that the Mastercard Gateway hosts and displays.

From Mastercard Gateway API version 65 and later, Trustly is automatically available as a payment method once your payment service provider enables and configures you for this payment method.

For details, see [Browser Payments through Hosted Checkout Integration](https://developer.mastercard.com/mastercard-gateway/documentation/payment-methods/imp-brow-pay-int/index.md#browser-payments-through-hosted-checkout-integration).

### Trustly through Direct Payment {#trustly-through-direct-payment}

Direct Payment integration allows you to offer the Trustly payment method on your own checkout page.

Alert: Trustly is supported from Mastercard Gateway API version 64 and later.

<br />

In addition to the [standard fields](https://developer.mastercard.com/mastercard-gateway/documentation/payment-methods/imp-brow-pay-int/index.md#browser-payments-through-direct-payment-integration) required in a browser payment request, provide the following fields in the [Initiate Browser Payment](https://developer.mastercard.com/mastercard-gateway/documentation/api-reference/v100/rest/api-ops/index.md#browser-payment) request:

#### Common fields {#common-fields}

* `sourceOfFunds.type` = Trustly
* `browserPayment.operation` = PAY (Trustly does not support the Authorize operation)
* `customer.account.id` = The ID, username, hash, or anything that is used to identify the consumer.
* `customer.email` = Email address of a payer.
* `sourceOfFunds.provided.trustly.bankAccountHolder`= Name of the bank account holder for the payer's bank account.
* `sourceOfFunds.provided.trustly.bankAccountCountryCode`= The country where payers have their bank account. Provide the ISO 3166 alpha-3 country code for this country.

##### Preferred Language {#preferred-language}

You can set the language that you prefer Trustly to use for the pages that are displayed to the payer by providing the `browserPayment.preferredLanguage` field in the Initiate Browser Payment request. However, the language will be used only if the Trustly supports it.

#### Sample Code to initiate Trustly Payment {#sample-code-to-initiate-trustly-payment}

```json
{
  "apiOperation": "INITIATE_BROWSER_PAYMENT",
  "billing": {
    "address": {
      "country": "POL"
    }
  },
  "browserPayment": {
    "operation": "PAY",
    "returnUrl": "<your_merchant_URL>"
  },
  "customer": {
    "email": "john.smith@example.com",
    "account": {
      "id": "Customer"
    }
  },
  "order": {
    "amount": 100,
    "currency": "PLN"
  },
  "sourceOfFunds": {
    "type": "TRUSTLY",
    "provided": {
      "trustly": {
        "bankAccountHolder": "Test Tester",
        "bankAccountCountryCode": "POL"
      }
    }
  }
}
```

## How to Interpret the Transaction Result {#how-to-interpret-the-transaction-result}

The table specifies the transaction response codes for the possible scenarios that you may encounter after initiating the Trustly payment.

|                      Initiate Browser Payment Response                      |                                                                                                                     What This Means...                                                                                                                      |
|-----------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `response.gatewayCode=SUBMITTED` `result=SUCCESS`                           | Redirect the payer using the URL provided in the response.                                                                                                                                                                                                  |
| **Retrieve Transaction/Retrieve Order Response**                            | **What This Means...**                                                                                                                                                                                                                                      |
| `response.gatewayCode=APPROVED` `result=SUCCESS`                            | The payment is successful.                                                                                                                                                                                                                                  |
| `response.gatewayCode=PENDING` `result=PENDING`                             | The Mastercard Gateway is waiting for a notification from the acquirer about the payment result. Try `RETRIEVE_TRANSACTION` again later or listen to notifications from the Mastercard Gateway.                                                             |
| `response.gatewayCode=CANCELLED` `result=FAILURE`                           | The payer has canceled the interaction for this payment. Offer the payer the option to try another payment method.                                                                                                                                          |
| `response.gatewayCode=DECLINED` or `ACQUIRER_SYSTEM_ERROR` `result=FAILURE` | The payment was declined. Offer the payer the option to try another payment method. In case of an `ACQUIRER_SYSTEM_ERROR`, you may want to inquire with the acquirer about the reason for the payment failure, or you can try `RETRIEVE_TRANSACTION` again. |
| `response.gatewayCode=TIMED_OUT` `result=FAILURE`                           | Treat this as a declined payment. The Mastercard Gateway will attempt ensure that the transaction is not successful or will revert the transaction.                                                                                                         |

## Refunds {#refunds}

You can refund the Trustly payments in installments or in full. Ensure that you are configured for refunds on the Mastercard Gateway and on your merchant account at your browser payments service provider.

## Testing your Integration {#testing-your-integration}

The Mastercard Gateway provides a browser payments emulator that allows you to \[test your Trustly integration\].
