> For the complete documentation index, see [llms.txt](https://resources.atriptech.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://resources.atriptech.com/capability/atlas-pay.md).

# Atlas Pay

***

#### *<mark style="color:orange;">#OVERVIEW#</mark>*

## What are the benefits of Atlas Pay?

> Atlas Pay is a secure and flexible global settlement solution that enables the management of bookings across 150 low-cost carriers worldwide.

<table data-view="cards"><thead><tr><th></th><th></th><th data-hidden data-card-cover data-type="files"></th></tr></thead><tbody><tr><td><strong>Reporting and Reconciliation</strong></td><td><p></p><p>Atlas offers a sophisticated reporting and reconciliation system which matches every transaction, helping to simplify accounting processes and automatically dealing with any post-pooking refunds.</p></td><td><a href="/files/Ggoo1KbSsB62Ku4FwIs9">/files/Ggoo1KbSsB62Ku4FwIs9</a></td></tr><tr><td><strong>Flexibility</strong></td><td><p></p><p>Atlas provides flexibility to suit your needs by offering different payment methods to support each transaction.</p></td><td><a href="/files/8dBZVTuGZQ3zFzgia5WO">/files/8dBZVTuGZQ3zFzgia5WO</a></td></tr><tr><td><strong>Security</strong></td><td><p></p><p>Atlas Pay is a secure way to settle and manage payments to suppliers and is PSD2/SCA compliant.</p></td><td><a href="/files/evx9SzdCMCr8fLlBiBy8">/files/evx9SzdCMCr8fLlBiBy8</a></td></tr></tbody></table>

#### *<mark style="color:orange;">#PAYMENT METHODS#</mark>*

## What Atlas Pay Offers Now?

> Atlas Pay provides clients with multiple payment methods: Atlas Deposit and Atlas VCC Passthrough, Atlas Merchant(MoR).

**Atlas Deposit (Available Now)**

* **Account Set-up**: Client sets up a deposit account in your chosen currencies. Atlas pays Airline on behalf of the client using payment methods that are accepted by Airline and/or preferred by Atlas.

* **Multi-Currency Account**: Supporting multi-currency accounts, Atlas provides bank accounts in different countries enabling quicker and more cost-effective payments.

* **Flexible Settlement Currency**: You can settle in the currency of your choice for each transaction.

* **Supported Currencies**: \
  AED, AUD, CAD, CHF, CNH, CZK, DKK, EUR, GBP, HKD, HUF, IDR, ILS, JPY, MXN, NOK, NZD, PLN, RON, SEK,  SGD, THB\*, USD, ZAR\
  \*THB only can using Citi for top-up

<details>

<summary><mark style="color:blue;">All Airlines Supported</mark></summary>

<https://www.atriptech.com/#/airline/list>

</details>

<figure><img src="/files/SkG5JXxTNebSgdigvtP1" alt=""><figcaption></figcaption></figure>

<details>

<summary><mark style="color:blue;">80+ Airlines Supported</mark></summary>

2B 2F 2L 3F 3L 3O 4N 5F 5J 5W 6J 7C 7G 8P 9M 9P A3 A7 AD AL AN BC BJ BT BX CD D8 DE DG DH DI DX DY E4 E5 E6 EI EW F9 FA FR FY G4 G9 GE GM GQ HD HP IT JH JV LG LJ LS LW MM MO MZ N0 NK NO P6 PB PC QN QQ RS RW SY T3 TF TR U8 VY W4 W6 W9 XC XQ XR XY XZ Y9 Z0 ZG

</details>

<figure><img src="/files/hkj138KYSRM95RnADuxJ" alt=""><figcaption></figcaption></figure>

#### *<mark style="color:orange;">#FEATURED SOLUTION#</mark>*

## Atlas Hybrid Payment Solution

<figure><img src="/files/P8Iiek2idV9WjZqTRPvz" alt=""><figcaption></figcaption></figure>

***

#### **Here’s how you can use a different payment method to retry the failed VCC Passthrough booking on ATRIP:**&#x20;

{% stepper %}
{% step %}
**Step1:** Log in to the ATRIP Flight Deck, go to "Bookings" and locate the order number; Click on “Regenerate” to recreate the new order and you will be able to view the new order details.

<figure><img src="/files/7WAb1s2GMq7E19ixn90i" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/8EDOmmOZXcEFSLMgLZwi" alt=""><figcaption></figcaption></figure>
{% endstep %}

{% step %}
**Step 2:** click “Pay”, order will be paid by deposit

<figure><img src="/files/guA8zCOHKzl2jJLBcPQE" alt=""><figcaption></figcaption></figure>
{% endstep %}
{% endstepper %}

***

#### **Here’s how you can use a different payment method to retry the failed VCC passthrough booking Through API:**&#x20;

{% hint style="warning" %}
**Scenario A:** Atlas payment(pay.do) failed.
{% endhint %}

Regardless of the reason for the failure, as long as the order was not successfully paid for, the customer can take the following actions:

**Retry** or **Switch to Deposit Mode of Payment**

```
{
  "orderNo": "XXX",
  "supportCreditTransPayment": null, // no need
  "creditCard": null // no need
}
```

{% hint style="warning" %}
**Scenario B :** Atlas payment(pay.do) success, Airline payment failed.
{% endhint %}

**Cancel order → Regenerate order → Payment with deposit**

If the payment cannot be processed due to an issue with the card, the system will automatically cancel the order and notify the customer of the cancellation reason via web-hooks, notification as follows:

```
{
  "type": "order.cancelled",
  "data": {
    "orderNo": "{canceled order no}",
    "errorCode": "604", // for example
    "errorMessage": "Payment declined by airline"
  }
}
```

**The customer can then take the following actions:**

Regenerate order(regenerateOrder.do):

```
{
  "originalOrderNo": "{original order no}"
}
```

Payment with deposit(pay.do):

```
{
  "orderNo": "{new order no}",
  "supportCreditTransPayment": null, // no need
  "creditCard": null // no need
}
```
