# API

### &#x20;Terms and Definitions <a href="#terms-and-definitions" id="terms-and-definitions"></a>

* System — Wasabigate payment gateway.
* Merchant — Wasabigate client who works with the System.
* API — application program interface for interacting with the system, located at <https://api.api-wasabigate.com>
* Back Office — merchant's back office in the system, located at <https://merchant.api-wasabigate.com>
* Card — a bank card of Visa, MasterCard or MIR systems.&#x20;
* Acquirer — a settlement bank.&#x20;
* Issuer — a bank that issued a card.&#x20;
* Cardholder — an owner of a card issued by a bank.&#x20;
* Widget — payment form, provided by the system to enter card data by a holder and perform a further authorization.
* 3-D Secure — protocol to verify a holder by the issuer.&#x20;

### Transaction types

The system involves three types of operations: payment, refund, and payout. In the first case, money is transferred from holder's account to the merchant, in the second - vice versa. A merchant performs a refund if a buyer wants to return goods, and it is always associated with a payment transaction, which amount returns to a holder. It is possible to refund a whole payment amount or it's part only. Money usually comes back to a holder’s card the same day, but sometimes (it depends on an issuer) it can take up to 3 days. Payout operation is used to transfer the funds from the merchant account to the Cardholder's account. The payout is possible only when the initial payment with a Card was done using the System.

### Payment Methods

* Via payment form — **widget**. Add a script that opens a secure payment form (iframe) to enter card data.&#x20;
* Via **API** by a card’s cryptogram. Add a checkout to your web site which collects card data from any web site’s form, encrypts and creates a cryptogram for a secured transmission through an interserver interaction.&#x20;
* Via **redirect**. User gets redirect to a payment page hosted on our servers.

### 3-D Secure

3-D Secure is a common name of Verified By Visa and MasterCard Secure Code programs from Visa and MasterCard's respectively. In general, such program shall authenticate a cardholder (that is to protect against an unauthorized card usage) by an issuer before a payment. Actually, it looks as follows: a cardholder specifies card data. Then the issuer’s web site opens, where a cardholder has to enter a password or a secret code (usually, the code is sent in a SMS message). If the code is correct, a payment will be successful. Otherwise, it will be rejected.

During the payment process, 3-D Secure appears not on all cards, but only on those, Issuers supporting this technology. Certainly, payments without 3-D Secure are a less secure option.

## Payment via Redirect

In Payment Redirect method the user gets redirected to the payment page, hosted by the System. After the user has entered his/her bank card data, the user then gets redirected back to the merchant site.

The Payment Redirect link is located in the Back Office and can be used in the following way:

```http
https://api.api-wasabigate.com/payments/redirect/pbid_2kajhh9oqhmpwjqgd529rg?
    \ amount=10.50&
    \ description=Payment&
    \ currency=EUR&
    \ invoiceId=0001&
    \ accountId=account%40example.com&
    \ successUrl=https%3A%2F%2Fwww.example.com%2Fsuccess&
    \ failureUrl=https%3A%2F%2Fwww.example.com%2Ffailure&
    \ pendingUrl=https%3A%2F%2Fwww.example.com%2Fpending&
    \ cancelUrl=https%3A%2F%2Fwww.example.com%2Fcancel&
    \ locale=en_US
```

| Parameter   | Type   | Usage    | Description                                                                                                                                                                                                                                        |
| ----------- | ------ | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| amount      | Number | Required | Payment amount                                                                                                                                                                                                                                     |
| description | String | Required | Description of a payment purpose in text format                                                                                                                                                                                                    |
| currency    | String | Required | Payment currency                                                                                                                                                                                                                                   |
| invoiceId   | String | Optional | Order or Invoice number                                                                                                                                                                                                                            |
| accountId   | String | Required | Payer's identifier. If specified, the payment token will be returned in the [Notification](https://developers.api-wasabigate.com/broken-reference) which can be used for payouts                                                                   |
| successUrl  | String | Required | URL the user gets redirected, after the successful charge transaction.                                                                                                                                                                             |
| failureUrl  | String | Required | URL the user gets redirected, after the charge transaction has failed.                                                                                                                                                                             |
| pendingUrl  | String | Required | URL the user gets redirected when the charge transaction status cannot be immediately returned. The merchant should expect to receive the end status of the transaction in [Notification](https://developers.api-wasabigate.com/broken-reference). |
| cancelUrl   | String | Required | URL the user gets redirected, after the payment was cancelled by the user.                                                                                                                                                                         |
| locale      | String | Optional | Payment form language. The default language is English when the parameter is not specified.                                                                                                                                                        |

{% hint style="info" %}
All query parameters passed to the redirect url (incl. description, accountId, successUrl, failureUrl, pendingUrl) should be URL encoded.
{% endhint %}

## Payment Widget

Payment widget is a pop-up form to enter card data and payer’s email address. The widget automatically defines a payment system type: Visa, MasterCard, Maestro or MIR, and an emitting bank of a card and corresponding logos. The form is optimized for use in any browsers and mobile devices. There is an iframe opens within a widget which guarantees a security of card data sending and does not require a certification for merchant's usage.

### Widget Installation

To install a widget, you need to add a script on a web site to the head section:

```markup
<script src="https://widgetui.api-wasabigate.com/assets/js/payment.js"></script>
```

Define a function for charge method calling for payment form to display

```javascript
var wasabigate = new Wasabigate();

		pay = function () {
			wasabigate.charge({
					publicId: 'pbid_2kajhh9oqhmpwjqgd529rg',  //id of site (see your merchant account page)
					amount: 68.54, 
					currency: 'EUR', 
					invoiceId: '9264', // order number (optional)
					description: 'Product purchasing example',
					accountId: 'foo@bar.com' // payer identification (optional)
				},
				function (options) {
					// after payment success
					console.log('payment success');
				},
				function (reason, options) { 
					// after payment failure
					console.log('payment failed');
				});

			return wasabigate;
		};
```

Call the function when some event is emitted, for example click on the «Pay» button:

```javascript
$('#checkout').click(pay);
```

Or use a link to call the payment method:

```markup
<a href="javascript:" onclick="pay()">Pay</a><br/>
```

### Parameters

| Parameter   | Type    | Usage    | Description                                                                                        |
| ----------- | ------- | -------- | -------------------------------------------------------------------------------------------------- |
| publicId    | String  | Required | A merchant identifier, located in Back Office                                                      |
| description | String  | Required | Description of a payment purpose in text format                                                    |
| amount      | Numeric | Required | Payment amount                                                                                     |
| currency    | String  | Required | Payment currency                                                                                   |
| invoiceId   | String  | Optional | Order or Invoice number                                                                            |
| accountId   | String  | Required | Payer's identifier. If specified, the payment token will be returned which can be used for payouts |
| locale      | String  | Optional | Payment widget's language. The default language is English when the parameter is not specified.    |

You can define the form behaviour for successful or unsuccessful payment using the following parameters:

| Parameter | Type     | Usage    | Description                                                   |
| --------- | -------- | -------- | ------------------------------------------------------------- |
| onSuccess | Function | Optional | Function will be called after successful payment completion   |
| onFail    | Function | Optional | Function will be called after unsuccessful payment completion |

### Locale

You can specify you language locale when the payment widget is created. The following locales are supported right now:

| Locale | Language                           |
| ------ | ---------------------------------- |
| en\_US | English language. Used by default. |
| ru\_RU | Russian                            |

## API

**API** is an application program interface to interact with Merchant's system.

Interface works on api.api-wasabigate.com and provides functionality for making a payment, refunding, and payouts.

{% hint style="warning" %}
Parameters are sent by POST method in a request body in JSON format. Use *application/json* Content-Type for data transfer.
{% endhint %}

The system returns a response in JSON format which includes at least two parameters: **success** and **message**:

```javascript
{ "Success": false, "Message": "Invalid Amount value" }
```

### Requests Authentication

For authentication **HTTP Basic Auth** is used which is sending a login and a password in a header of HTTP request. **Public ID** serves as a login and **API Secret** serves as a password. Both of these values you can get in the back office.

{% hint style="warning" %}
If a request does not contain a header with authentication data, or incorrect data is sent, the system returns 401 HTTP status - Unauthorized.
{% endhint %}

### Duplicate Requests Protection

**invoiceId** parameter is used to identify the uniqueness of the request sent from the Merchant to the System. That means you can send several requests to the system with the same **invoiceId** identifier, and only one request will be processed. The following requests with the same invoiceId will be Declined. Thus the protection against network errors is implemented which can lead to creation of duplicate records and actions. The time interval when the System considers the received invoiceId is duplicate can be configured individually per Merchant.&#x20;

{% hint style="info" %}
Duplicate Requests Protection by invoiceId is disabled by default. Refer to you Account Manager in case the Protection has to be activated.
{% endhint %}

## Test

<mark style="color:green;">`POST`</mark> `https://api.api-wasabigate.com/test`&#x20;

The method to test the interaction with the API.

#### Headers

| Name                                            | Type   | Description               |
| ----------------------------------------------- | ------ | ------------------------- |
| Authorization<mark style="color:red;">\*</mark> | string | HTTP Basic authentication |
| Content-Type<mark style="color:red;">\*</mark>  | string | application/json          |

{% tabs %}
{% tab title="200 The method returns a request status." %}

```javascript
{"success": true, "message": "Test message success"}
```

{% endtab %}
{% endtabs %}

## Payment

<mark style="color:green;">`POST`</mark> `https://api.api-wasabigate.com/payments/charge/card` &#x20;

The method to request a payment with Card data supplied. This method is used when the Card data is collected on the merchant's side.&#x20;

#### Headers

| Name                                            | Type   | Description               |
| ----------------------------------------------- | ------ | ------------------------- |
| Authorization<mark style="color:red;">\*</mark> | string | HTTP Basic authentication |
| Content-Type<mark style="color:red;">\*</mark>  | string | application/json          |

#### Request Body

| Name                                          | Type   | Description                                                                                                                                                                       |
| --------------------------------------------- | ------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| publicId<mark style="color:red;">\*</mark>    | string | Merchant identifier. Located in the Back Office.                                                                                                                                  |
| amount<mark style="color:red;">\*</mark>      | string | Payment amount                                                                                                                                                                    |
| currency<mark style="color:red;">\*</mark>    | number | Payment currency                                                                                                                                                                  |
| name<mark style="color:red;">\*</mark>        | string | Cardholder's name                                                                                                                                                                 |
| description<mark style="color:red;">\*</mark> | string | Description of a payment in text format                                                                                                                                           |
| card<mark style="color:red;">\*</mark>        | string | Card data of a payment. See the example below for the card data object structure.                                                                                                 |
| invoiceId                                     | object | Order or invoice number                                                                                                                                                           |
| accountId<mark style="color:red;">\*</mark>   | string | Payer's e-mail address                                                                                                                                                            |
| successRedirectUrl                            | string | URL the user gets redirected to after the successful charge transaction. This parameter is used only when the integration supports "Redirect 3-DS" schema.                        |
| failureRedirectUrl                            | string | URL the user gets redirected after the charge transaction has failed. This parameter is used only when  the integration supports "Redirect 3-DS" schema.                          |
| pendingRedirectUrl                            | string | URL the user gets redirected to when the end status of the transaction cannot be retrieved yet. This parameter is used only when the integration supports "Redirect 3-DS" schema. |
| ip<mark style="color:red;">\*</mark>          | string | Payer's IP address                                                                                                                                                                |

{% tabs %}
{% tab title="200 " %}

```javascript
{
    "success": true,
    "message": null,
    "model": {
        "transactionId": 524,
        "amount": 40.11,
        "currency": "EUR",
        "invoiceId": "9276334",
        "accountId": "john@doe.com",
        "description": "Payment for products",
        "name": "John Doe",
        "token": "8163-KS17-JV29-KF28",
        "statusCode": 4,
        "status": "Completed",
        "reasonCode": 0,
        "reason": "Approved"
    }
}
```

{% endtab %}
{% endtabs %}

#### Payment request example

```javascript
{
	"publicId": "pbid_2kajhh9oqhmpwjqgd529rg",
	"amount": 40.11,
	"currency": "EUR",
	"name": "John Doe",
	"invoiceId": "927829",
	"description": "Payment for products",
	"accountId": "john@doe.com",
	"ip": "154.12.54.12",
	"card": {
		"publicId": "pbid_2kajhh9oqhmpwjqgd529rg",
		"pan": "4242424242424242",
		"cvv": "123",
		"expiryMonth": 12,
		"expiryYear": 2023
	},
	"browserData": {
		"colorDepth": "24",
 		"javaEnabled": "false",
		"screenHeight": "600",
		"screenWidth": "800",
		"language": "en_US",
		"acceptHeader": "text/html,application/xhtml+xml,application/xml",
		"timeZoneOffset": "+120",
 		"userAgent": "AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0"
	},
	"data": {
		"countryCode": "UK",
		"city": "London",
		"address": "Wall Street 15",
		"postcode": "12384",
		"phone": "441632960909",
		"state": "",
		"birthDate": "1980-04-25",
		"firstName": "John",
		"lastName": "Doe"
	}
}
```

#### Response: transaction success

```javascript
{
    "success": true,
    "message": null,
    "model": {
        "transactionId": 524,
        "amount": 40.11,
        "currency": "EUR",
        "invoiceId": "9276334",
        "accountId": "john@doe.com",
        "description": "Payment for products",
        "name": "John Doe",
        "token": "8163-KS17-JV29-KF28",
        "statusCode": 4,
        "status": "Completed",
        "reasonCode": 0,
        "reason": "Approved"
    }
}
```

#### Response: transaction failure

```javascript
{
    "success": false,
    "message": "Insufficient funds to process the transaction",
    "model": {
        "transactionId": 524,
        "amount": 2873.00,
        "currency": "EUR",
        "invoiceId": "9276334",
        "accountId": "john@doe.com",
        "description": "Payment",
        "name": "John Doe",
        "token": null,
        "statusCode": 99,
        "status": "Declined",
        "reasonCode": 5051,
        "reason": "Insufficient Funds"
    }
}
```

#### Response: 3-D Secure authentication redirect is required (Redirect 3-DS)

Payment response depends on the processing card. If the card participates in 3-D Secure, in Redirect 3-DS schema the response will contain a link, the user should be redirected to, to complete the 3-D Secure authentication.

```javascript
{
    "success": false,
    "message": "Requires 3DS authentication",
    "threeDsRedirectModel": {
        "url": "https://api.api-wasabigate.com/redirect/?link_reference=437b2e80220a11bc8b532f4e2aa8c471",
        "transactionId": 525,
        "statusCode": 1,
        "status": "AwaitingAuthentication"
    }
}
```

After completing the 3-D Secure verification, depending on the verification results, the user gets redirected either to **successRedirectUrl** or **failureRedirectUrl** or **pendingRedirectUrl** parameter value, supplied in the [Payment](https://developers.api-wasabigate.com/broken-reference) request.

#### Response: 3-D Secure authentication handling by merchant is required (Advanced 3-DS)

```javascript
{
    "success": false,
    "message": "Requires 3DS authentication",
    "threeDsModel": {
        "transactionId": 529,
        "method": "post",
        "paReq": "eNpdU8tymzAU3ecrvMumYz1AgD2yZnDsTpMZx06TRdudLK5skhiIgNjust/Tr+qXVMIm4DDDoHvuOdKZexB/2hqA2SOo2oC4Ggz4AspSbmCQJpPrSELAZKApSOyFkWYaY+brJAq0pzTQa6ewmlX8Hd4aRZDoKMIs8WXiK2/NvIAFDPwwoRrCkV6fFVbzDqZM80yQIR5SjtqybRcyE4xFPmUhoZiGhPkRRw5tGQswaiuzqgUsJNXb9PZeMBpYFUfnsuvvwNzOBKa4fTg6QR0lkzsQ84PcFa/AUVN1TZXXWWWOgmLrpS26dm1exbaqijFC+/1+CKddhrnZII5cs7WOPnvnq9oBZf+wQ5qIxSzed+/8uPj9QO6flb98iiccOUbHT2QF1hlhmODRgARj6o0Z46jBezPaOd/i35+/hH7x7ATOQMconJf4hBLqKH2kN43aGMjUUYxCN4626ghwKPIMrMbm+7HuGYZSCevPfT4m83kQ/ObbRcCqsnHls7V++fVAHoPlnb/9eVMuVz+m8fzrNN5MXOwN6cJHaoMiETkZSbvUOGr3t0e7v7i5A+h8CcQVR5cX5D/FxN2u",
        "acsUrl": "http://ascbank.redisecure.com/ascpage/cap?id=8276844",
        "statusCode": 1,
        "status": "AwaitingAuthentication"
    }
}
```

In the Advanced 3-DS schema, to complete 3-D Secure authentication, merchant needs to forward a payer to the address specified in the **acsUrl** parameter of the server's response with following parameters:

* MD — **transactionId** parameter from server response&#x20;
* PaReq — same parameter from server response&#x20;
* TermUrl — the address on your site for returning the payer once authentication successful

#### Form example

```markup
<form name="paymentForm" action="AcsUrl" method="POST">
    <input type="hidden" name="PaReq" value="eNpdU8tymzAU3ecrvMumYz1AgD2yZnDsTpMZx06TRdudLK5skhiIgNjust/Tr+qXVMIm4DDDoHvuOdKZexB/2hqA2SOo2oC4Ggz4AspSbmCQJpPrSELAZKApSOyFkWYaY+brJAq0pzTQa6ewmlX8Hd4aRZDoKMIs8WXiK2/NvIAFDPwwoRrCkV6fFVbzDqZM80yQIR5SjtqybRcyE4xFPmUhoZiGhPkRRw5tGQswaiuzqgUsJNXb9PZeMBpYFUfnsuvvwNzOBKa4fTg6QR0lkzsQ84PcFa/AUVN1TZXXWWWOgmLrpS26dm1exbaqijFC+/1+CKddhrnZII5cs7WOPnvnq9oBZf+wQ5qIxSzed+/8uPj9QO6flb98iiccOUbHT2QF1hlhmODRgARj6o0Z46jBezPaOd/i35+/hH7x7ATOQMconJf4hBLqKH2kN43aGMjUUYxCN4626ghwKPIMrMbm+7HuGYZSCevPfT4m83kQ/ObbRcCqsnHls7V++fVAHoPlnb/9eVMuVz+m8fzrNN5MXOwN6cJHaoMiETkZSbvUOGr3t0e7v7i5A+h8CcQVR5cX5D/FxN2u">
    <input type="hidden" name="MD" value="529">
    <input type="hidden" name="TermUrl" value="https://merchant.example.com/post3ds?orderId=82794">
</form>
<script>
    window.onload = submitForm;
    function submitForm() { paymentForm.submit(); }
</script>
```

{% hint style="info" %}
When authentication is done, payer will be returned to TermUrl with the MD and PaRes parameters passed in the POST method.
{% endhint %}

To complete the payment, use [post3ds](https://developers.api-wasabigate.com/broken-reference) method.

{% hint style="warning" %}
Please contact your Account Manager to clarify if Advanced 3-DS schema is available for your integration.
{% endhint %}

## Post 3-D Secure

<mark style="color:green;">`POST`</mark> `https://api.api-wasabigate.com/payments/post3ds` &#x20;

The method to validate payment's 3-D Secure authentication

#### Headers

| Name                                            | Type   | Description               |
| ----------------------------------------------- | ------ | ------------------------- |
| Authorization<mark style="color:red;">\*</mark> | string | HTTP Basic authentication |
| Content-Type<mark style="color:red;">\*</mark>  | string | application/json          |

#### Request Body

| Name                                            | Type    | Description          |
| ----------------------------------------------- | ------- | -------------------- |
| transactionId<mark style="color:red;">\*</mark> | integer | MD parameter value   |
| paRes<mark style="color:red;">\*</mark>         | string  | Received PaRes value |

{% tabs %}
{% tab title="200 " %}

```javascript
{
    "success": true,
    "message": null,
    "model": {
        "transactionId": 524,
        "amount": 40.11,
        "currency": "EUR",
        "invoiceId": "9276334",
        "accountId": "john@doe.com",
        "description": "Payment for products",
        "name": "John Doe",
        "token": "8163-KS17-JV29-KF28",
        "statusCode": 4,
        "status": "Completed",
        "reasonCode": 0,
        "reason": "Approved"
    }
}
```

{% endtab %}
{% endtabs %}

The server will return either information about successful transaction or declined in response to correctly created request.

## Refund

<mark style="color:green;">`POST`</mark> `https://api.api-wasabigate.com/payments/refund`  &#x20;

The method to return the funds of a successfully completed charge operation

#### Headers

| Name                                            | Type   | Description               |
| ----------------------------------------------- | ------ | ------------------------- |
| Authorization<mark style="color:red;">\*</mark> | string | HTTP Basic authentication |
| Content-Type<mark style="color:red;">\*</mark>  | string | application/json          |

#### Request Body

| Name                                            | Type    | Description                                                                                                                                                        |
| ----------------------------------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| transactionId<mark style="color:red;">\*</mark> | integer | Transaction ID of successfully completed charge transaction                                                                                                        |
| amount                                          | number  | Refund amount. If the amount is not provided, the transaction is refunded in full of the initial charge amount. The transaction can be refunded partially as well. |

{% tabs %}
{% tab title="200 " %}

```javascript
{
    "model": {
        "transactionId": 1039
    },
    "success": true,
    "message": null
}
```

{% endtab %}
{% endtabs %}

#### Request example

```javascript
{"transactionId": 524, "amount": 13.34}
```

## Payout via token

<mark style="color:green;">`POST`</mark> `https://api.api-wasabigate.com/payments/payout` &#x20;

The method to payout the funds to a Card by provided token

#### Headers

| Name                                            | Type   | Description               |
| ----------------------------------------------- | ------ | ------------------------- |
| Authorization<mark style="color:red;">\*</mark> | string | HTTP Basic authentication |
| Content-Type<mark style="color:red;">\*</mark>  | string | application/json          |

#### Request Body

| Name                                        | Type   | Description                                                                                                |
| ------------------------------------------- | ------ | ---------------------------------------------------------------------------------------------------------- |
| token<mark style="color:red;">\*</mark>     | string | Token of the card. The token is received in response message after the successful Payment API method call. |
| amount<mark style="color:red;">\*</mark>    | number | Payout amount                                                                                              |
| accountId<mark style="color:red;">\*</mark> | string | Payer's e-mail address.                                                                                    |
| currency<mark style="color:red;">\*</mark>  | string | Payout currency                                                                                            |
| invoiceId                                   | string | Order or invoice number                                                                                    |

{% tabs %}
{% tab title="200 " %}

```javascript
{
    "success": true,
    "message": null,
    "model": {
        "transactionId": 2533,
        "amount": 12.30,
        "currency": "EUR",
        "invoiceId": null,
        "accountId": "john@doe.com",
        "name": "John Doe",
        "statusCode": 7,
        "status": "PayoutCompleted",
        "reasonCode": 0,
        "reason": "Approved"
    }
}
```

{% endtab %}
{% endtabs %}

#### Request example

```javascript
{
    "token": "8163-KS17-JV29-KF28",
    "amount": 12.30,
    "accountId": "john@doe.com",
    "currency": "EUR"
}
```

## Payout to card

<mark style="color:green;">`POST`</mark> `https://api.api-wasabigate.com/payments/payout/card` &#x20;

Payout method when the funds are transferred to the provided credit card

#### Headers

| Name                                            | Type   | Description               |
| ----------------------------------------------- | ------ | ------------------------- |
| Authorization<mark style="color:red;">\*</mark> | string | HTTP Basic authentication |
| Content-Type<mark style="color:red;">\*</mark>  | string | application/json          |

#### Request Body

| Name                                       | Type   | Description                      |
| ------------------------------------------ | ------ | -------------------------------- |
| pan<mark style="color:red;">\*</mark>      | string | Card number                      |
| name<mark style="color:red;">\*</mark>     | string | Cardholder name                  |
| amount<mark style="color:red;">\*</mark>   | number | Payout amount                    |
| currency<mark style="color:red;">\*</mark> | string | Payout currency                  |
| invoiceId                                  | string | Order or invoice number          |
| data                                       | object | Payout recipient additional data |

{% tabs %}
{% tab title="200 " %}

```javascript
{
    "success": true,
    "message": null,
    "model": {
        "transactionId": 2533,
        "amount": 12.30,
        "currency": "EUR",
        "invoiceId": "11928485",
        "accountId": null,
        "name": "John Doe",
        "statusCode": 7,
        "status": "PayoutCompleted",
        "reasonCode": 0,
        "reason": "Approved"
    }
}
```

{% endtab %}
{% endtabs %}

#### Request example

```javascript
{
    "pan": "4242424242424242",
    "name": "John Doe",
    "amount": 12.30,
    "currency": "EUR",
    "invoiceId": "11928485",
    "data": {
        "phone": "+999389235",
        "address": "Wall street 65",
        "city": "New York",
        "countryCode": "US",
        "birthDate": "1980-11-25"
    }
}
```

## Status

<mark style="color:green;">`POST`</mark> `https://api.api-wasabigate.com/payments/status`&#x20;

Returns the current status of the requested transaction.

#### Headers

| Name                                            | Type   | Description               |
| ----------------------------------------------- | ------ | ------------------------- |
| Authorization<mark style="color:red;">\*</mark> | string | HTTP Basic authentication |
| Content-Type<mark style="color:red;">\*</mark>  | string | application/json          |

#### Request Body

| Name                                            | Type   | Description                           |
| ----------------------------------------------- | ------ | ------------------------------------- |
| transactionId<mark style="color:red;">\*</mark> | string | Transaction ID to check the status of |

{% tabs %}
{% tab title="200 " %}

```javascript
{
    "model": {
        "transactionId": 144221,
        "amount": 12.30,
        "currency": "EUR",
        "invoiceId": "11928485",
        "accountId": "john@doe.com",
        "name": "John Doe",
        "statusCode": 4,
        "status": "Completed",
        "reasonCode": 0,
        "reason": "Approved",
        "operationTypeCode": 1,
        "operationType": "Payment"
    },
    "success": true,
    "message": null
}
```

{% endtab %}
{% endtabs %}

#### Request example

```javascript
{
    "transactionId": 144221
}
```

## Checkout

<mark style="color:green;">`POST`</mark> `https://api.api-wasabigate.com/checkout/link`&#x20;

Allows merchants to dynamically generate a checkout link for processing card payments. Merchants can customize the appearance of the payment form by passing various styling parameters.

#### Headers

| Name                                            | Type   | Description               |
| ----------------------------------------------- | ------ | ------------------------- |
| Authorization<mark style="color:red;">\*</mark> | string | HTTP Basic authentication |
| Content-Type<mark style="color:red;">\*</mark>  | string | application/json          |

#### Request Body

| Name        | Type   | Description                                                |
| ----------- | ------ | ---------------------------------------------------------- |
| amount      | number | The payment amount.                                        |
| currency    | string | The currency of the payment (e.g., USD, EUR).              |
| description | string | A description of the transaction.                          |
| invoiceId   | string | Unique identifier for the invoice.                         |
| accountId   | string | The merchant's account identifier (e.g., email).           |
| successUrl  | string | The URL to redirect the customer upon successful payment.  |
| failureUrl  | string | The URL to redirect the customer upon failed payment.      |
| pendingUrl  | string | The URL to redirect the customer when payment is pending.  |
| cancelUrl   | string | The URL to redirect the customer when payment is canceled. |
| locale      | string | The locale setting (e.g., en\_US, fr\_FR).                 |
| ip          | string | The IP address of the customer.                            |
| data        | object | Optional user information                                  |
| page        | object | Optional customization for Payment Form                    |

#### Object 'data' (Optional user information)

| Name        | Type   | Description                          |
| ----------- | ------ | ------------------------------------ |
| personId    | string | The unique identifier of the person. |
| firstName   | string | The customer's first name.           |
| lastName    | string | The customer's last name.            |
| countryCode | string | The country code of the customer.    |
| state       | string | The state of the customer.           |
| city        | string | The city of the customer.            |
| address     | string | The address of the customer.         |
| postcode    | string | The postal code of the customer.     |
| phone       | string | The phone number of the customer.    |

#### Object 'page' (Optional customization for Payment Form)

| Name                          | Type    | Description                                                                                     |
| ----------------------------- | ------- | ----------------------------------------------------------------------------------------------- |
| logo                          | string  | The logo identifier for the merchant.                                                           |
| leftContainerBackgroundColor  | string  | Background color for the left section (e.g., `#172650`).                                        |
| merchantTitle                 | string  | The title of the merchant displayed on the payment page.                                        |
| priceHeadingColor             | string  | Color of the price heading.                                                                     |
| backLinkColor                 | string  | Color of the back link.                                                                         |
| backLinkHoverColor            | string  | Hover color of the back link.                                                                   |
| bodyFont                      | string  | The font used for the body text.                                                                |
| payButtonColor                | string  | Background color of the pay button.                                                             |
| payButtonTextColor            | string  | Text color of the pay button.                                                                   |
| payButtonWithPrice            | boolean | Whether the price is displayed on the pay button.                                               |
| rightContainerBackgroundColor | string  | Background color for the right section.                                                         |
| rightContainerHeadingColor    | string  | Heading color for the right section.                                                            |
| formLabelColor                | string  | Color of form labels.                                                                           |
| formErrorColor                | string  | Color of form error messages.                                                                   |
| formControlBorderColor        | string  | Border color of input fields.                                                                   |
| formControlBorderRadius       | string  | Border radius for input fields.                                                                 |
| footerColor                   | string  | Color of the footer text.                                                                       |
| footerIcons                   | array   | List of icons displayed in the footer (e.g., `secure-connection`, `verified-by-visa`).          |
| footerText                    | string  | The text displayed in the footer.                                                               |
| fields                        | array   | List of additional fields to display (`email`, `phone`, `shipping_address`, `billing_address`). |

{% tabs %}
{% tab title="200" %}

```json
{
    "success": true,
    "message": null,
    "model": {},
    "link": {
        "method": "get",
        "action": "https://api.api-wasabigate.com/aaa-bbb-ccc-123"
    }
}
```

{% endtab %}
{% endtabs %}

#### Checkout request example:

```json
{
  "amount": 10.66,
  "currency": "USD",
  "description": "Payment for products",
  "invoiceId": "990022",
  "accountId": "john@doe.com",
  "successUrl": "https://example.com/success",
  "failureUrl": "https://example.com/failure",
  "pendingUrl": "https://example.com/pending",
  "cancelUrl": "https://example.com/cancel",
  "locale": "en_US",
  "ip": "10.20.30.40",
  "data": {
    "firstName": "John",
    "lastName": "Doe"
  },
  "page": {
    "logo": "merchant-logo",
    "leftContainerBackgroundColor": "#172650",
    "merchantTitle": "Merchant #1",
    "priceHeadingColor": "#fff",
    "backLinkColor": "#5D6784",
    "backLinkHoverColor": "#fff",
    "bodyFont": "BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Ubuntu, sans-serif",
    "payButtonColor": "#172650",
    "payButtonTextColor": "#9b8a8a",
    "payButtonWithPrice": true,
    "rightContainerBackgroundColor": "#fff",
    "rightContainerHeadingColor": "#2E2522",
    "formLabelColor": "#514643",
    "formErrorColor": "#DC2F2E",
    "formControlBorderColor": "#e0e0e0",
    "formControlBorderRadius": "6px",
    "footerColor": "#A2A8B9",
    "footerIcons": [
      "secure-connection",
      "verified-by-visa",
      "mastercard-secure-code",
      "mir-accept",
      "american-express",
      "pci-dss"
    ],
    "footerText": "This is footer text that is displayed",
    "fields": [
      "email",
      "phone",
      "shipping_address",
      "billing_address"
    ]
  }
}
```

## List

<mark style="color:green;">`POST`</mark> `https://api.api-wasabigate.com/payments/list`&#x20;

Returns the lists of all transactions for a day.

#### Headers

| Name                                            | Type   | Description               |
| ----------------------------------------------- | ------ | ------------------------- |
| Authorization<mark style="color:red;">\*</mark> | string | HTTP Basic authentication |
| Content-Type<mark style="color:red;">\*</mark>  | string | application/json          |

#### Request Body

| Name                                   | Type   | Description                                                                                                                                             |
| -------------------------------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
| date<mark style="color:red;">\*</mark> | string | Date when transactions were created in 'YYYY-MM-DD' format.                                                                                             |
| timezone                               | string | Transactions date timezone. See Timezones dictionary for available timezones. If timezone is not specified, the transactions are returned based on UTC. |

{% tabs %}
{% tab title="200 " %}

```json
{
    "success": true,
    "message": null,
    "transactions": [
        {
            "id": 16213,
            "test": false,
            "bankReference": "b553115e-7fab-4c85-9e9d-d48182947a88",
            "statusId": 4,
            "status": "Completed",
            "currency": "USD",
            "amount": 65.77,
            "description": "Products Payment",
            "invoiceId": "132-33541-34",
            "accountId": "test@account.com",
            "created": 1606726879000,
            "operationTypeId": 1,
            "operationType": "Payment",
            "reasonId": 0,
            "reason": "Approved",
            "card": {
                "cardHolder": "John Doe",
                "cardBrand": "Visa",
                "cardType": "CREDIT",
                "cardFirstSix": "411111",
                "cardLastFour": "1111",
                "expiryMonth": "12",
                "expiryYear": "2030",
                "issuerName": "BANK SINOPAC",
                "issuerCountry": "TW"
            },
            "processing": {
                "bankArn": "837643",
                "bankEci": "2",
                "bankResponseCode": "00"
            },
            "completed": 1606726905000,
            "paymentTransactionId": null,
            "siteId": 2,
            "ip": "127.0.0.1",
            "companyId": 1
        }
    ]
}

```

{% endtab %}
{% endtabs %}

{% hint style="info" %}
The List API method result set is limited to 10 000 entries. Refer to List Paged API method if your result set exceeds the limits.
{% endhint %}

#### Request example

```javascript
{"date":"2020-10-25", "timezone":"Europe/Riga"}
```

## List Paged

<mark style="color:green;">`POST`</mark> `https://api.api-wasabigate.com/payments/list/paging`&#x20;

Returns the lists of all transactions for a specific time interval. The method supports paging options to retrieve large result sets in portions. The interval looks up transactions based on the creation date.

#### Headers

| Name                                            | Type   | Description               |
| ----------------------------------------------- | ------ | ------------------------- |
| Authorization<mark style="color:red;">\*</mark> | string | HTTP Basic authentication |
| Content-Type<mark style="color:red;">\*</mark>  | string | application/json          |

#### Request Body

| Name                                       | Type   | Description                                                                                                                                             |
| ------------------------------------------ | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
| dateFrom<mark style="color:red;">\*</mark> | string | Result set time interval from.                                                                                                                          |
| dateTo<mark style="color:red;">\*</mark>   | string | Result set time interval to                                                                                                                             |
| startingAfter                              | number | Forward pagination parameter. Accepts value `lastId` from the response                                                                                  |
| endingBefore                               | number | Reverse pagination parameter. Accepts value `firstId` from the response                                                                                 |
| timezone                                   | string | Transactions date timezone. See Timezones dictionary for available timezones. If timezone is not specified, the transactions are returned based on UTC. |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
    "success": true,
    "message": "OK",
    "count": 2,
    "transactions": [
        {
            "id": 501175,
            "test": false,
            "bankReference": "wEByeg4CN4NK+67DGL1kKk==",
            "statusId": 99,
            "status": "Declined",
            "currency": "EUR",
            "amount": 43.64,
            "description": "Payment for products",
            "invoiceId": "927829",
            "accountId": "john@doe.com",
            "created": 1651043742000,
            "operationTypeId": 1,
            "operationType": "Payment",
            "reasonId": 5096,
            "reason": "System Error",
            "card": {
                "cardHolder": "John Doe",
                "cardBrand": "Visa",
                "cardType": "CREDIT",
                "cardFirstSix": "411111",
                "cardLastFour": "1111",
                "expiryMonth": "12",
                "expiryYear": "2030",
                "issuerName": "BANK SINOPAC",
                "issuerCountry": "TW"
            },
            "processing": {
                "bankArn": "837643",
                "bankEci": "2",
                "bankResponseCode": "00"
            },
            "completed": 1606726905000,
            "paymentTransactionId": null,
            "siteId": 10,
            "ip": "127.0.0.1",
            "companyId": 1
        },
        {
            "id": 501176,
            "test": false,
            "bankReference": "wEByeg4CN4NK+67DGL1kKk==",
            "statusId": 4,
            "status": "Completed",
            "currency": "EUR",
            "amount": 54.75,
            "description": "Payment for products",
            "invoiceId": "927829",
            "accountId": "john@deer.com",
            "created": 1651043880000,
            "operationTypeId": 1,
            "operationType": "Payment",
            "reasonId": 0,
            "reason": "Approved",
            "card": {
                "cardHolder": "John Doe",
                "cardBrand": "Visa",
                "cardType": "CREDIT",
                "cardFirstSix": "411111",
                "cardLastFour": "1111",
                "expiryMonth": "12",
                "expiryYear": "2030",
                "issuerName": "BANK SINOPAC",
                "issuerCountry": "TW"
            },
            "processing": {
                "bankArn": "837643",
                "bankEci": "2",
                "bankResponseCode": "00"
            },
            "completed": 1606726905000,
            "paymentTransactionId": null,
            "siteId": 10,
            "ip": "127.0.0.1",
            "companyId": 1
        }
    ],
    "hasMore": false,
    "firstId": 501175,
    "lastId": 501176
}
```

{% endtab %}
{% endtabs %}

#### Paging usage

The result set returned for each page is limited to 1000 records. The field `hasMore` indicates if overall result set based on the request criteria contains more records not yet returned by the response.&#x20;

Use `lastId` field value from the response as `startingAfter` request parameter in order to get the next page (result set) of data. This method is called Forward Pagination.

Use `firstId` field value from the response as `endingBefore` request parameter in order to get the previous page (result set) of data. This method is called Reverse Pagination.

When the overall result set has no more records based on the request criteria, the field `hasMore` will return `false`.

#### Request example

```javascript
{
    "dateFrom":"2022-04-27 00:00:00",
    "dateTo":"2022-04-27 23:59:59",
    "startingAfter": 501174
}
```

## Link

<mark style="color:green;">`POST`</mark> `https://api.api-wasabigate.com/payments/link`&#x20;

The method is used to generate a payment link, where the user can be redirected to proceed with the payment. When the payment is requested, a payment link is generated and returned in the "link" field of the response.

#### Headers

| Name                                           | Type   | Description               |
| ---------------------------------------------- | ------ | ------------------------- |
| Authorizaton<mark style="color:red;">\*</mark> | string | HTTP Basic authentication |
| Content-Type<mark style="color:red;">\*</mark> | string | application/json          |

#### Request Body

| Name                                          | Type   | Description                                                                                                       |
| --------------------------------------------- | ------ | ----------------------------------------------------------------------------------------------------------------- |
| amount<mark style="color:red;">\*</mark>      | number | Payment amount                                                                                                    |
| currency<mark style="color:red;">\*</mark>    | string | Payment currency                                                                                                  |
| description<mark style="color:red;">\*</mark> | string | Payment description in text format                                                                                |
| invoiceId                                     | string | Order or invoice number                                                                                           |
| accountId<mark style="color:red;">\*</mark>   | string | Payer's e-mail address                                                                                            |
| successUrl<mark style="color:red;">\*</mark>  | string | The URL address the user gets redirected after  successful payment operation                                      |
| failureUrl<mark style="color:red;">\*</mark>  | string | The URL address the user gets redirected after the payment transaction has failed                                 |
| pendingUrl<mark style="color:red;">\*</mark>  | string | The URL address the user gets redirected when the payment processing is pending                                   |
| cancelUrl<mark style="color:red;">\*</mark>   | string | The URL address the user gets redirected when the payment has been cancelled by the user                          |
| locale                                        | string | Payment form language. English language is used by default when no locale specified                               |
| ip<mark style="color:red;">\*</mark>          | string | IP address of the payer.                                                                                          |
| data                                          | object | Additional data required for the payment processing. See request example for available fields in the data object. |
| personId                                      | string | The field depends on the specific method. This can be a payer wallet or bank number.                              |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
    "success": true,
    "message": null,
    "model": {
        "transactionId": 356244,
        "amount": 10.66,
        "currency": "USD",
        "invoiceId": "990022",
        "accountId": "john@doe.com",
        "description": "Payment for products",
        "statusCode": 10,
        "status": "Created",
        "reasonCode": 0,
        "reason": "Approved"
    },
    "link": {
        "method": "get",
        "action": "https://checkout.api-wasabigate.com/?f8927-3928f-2398-3939"
    }
}
```

{% endtab %}
{% endtabs %}

#### Request example

```javascript
{
	"amount": 10.66,
	"currency": "USD",
	"description": "Payment for products",
	"invoiceId": "990022",
	"accountId": "john@doe.com",
	"successUrl": "https://example.com/success",
	"failureUrl": "https://example.com/failure",
        "pendingUrl": "https://example.com/pending",
        "cancelUrl": "https://example.com/cancel",
        "locale": "en_US", 
        "ip": "10.20.30.40",
        "data": {
                "personId": "4000878749933",
                "phone": "+73838247553",
                "address": "Wall Street 14-49",
                "city": "New York",
                "firstName": "John",
                "lastName": "Doe",
                "countryCode": "BR",
                "paymentTypeId": 1
         }
}
```

## Balance

<mark style="color:blue;">`GET`</mark> `https://api.api-wasabigate.com/payments/balance`&#x20;

Returns the list of available accounts and balance. The balance is calculated taking into account the amount of successful payments, payouts, holds and fees.

#### Headers

| Name                                           | Type   | Description               |
| ---------------------------------------------- | ------ | ------------------------- |
| Authorizaton<mark style="color:red;">\*</mark> | string | HTTP Basic authentication |
| Content-Type<mark style="color:red;">\*</mark> | string | application/json          |

#### Response example

{% tabs %}
{% tab title="200" %}

```json
{
    "success": true,
    "message": null,
    "balances": [
        {
            "name": "The balance",
            "currencies": [
                {
                    "currency": "EUR",
                    "total": 14633.00,
                    "pending": 0.00,
                    "hold": 481.70,
                    "fee": 529.98,
                    "pendingFee": 0.00,
                    "available": 13621.32
                },
                {
                    "currency": "USD",
                    "total": 59483.00,
                    "pending": 503.00,
                    "hold": 3220.70,
                    "fee": 1003.98,
                    "pendingFee": 45.10,
                    "available": 54710.22
                },
            ]
        }
    ]
}
```

{% endtab %}
{% endtabs %}

#### Response parameters description

| Parameter                                  | Type   | Description                                      |
| ------------------------------------------ | ------ | ------------------------------------------------ |
| currency<mark style="color:red;">\*</mark> | string | Balance currency                                 |
| total                                      | number | Total funds amount on the balance                |
| pending                                    | number | Funds that are reserved for ongoing transactions |
| hold                                       | number | Funds on hold                                    |
| fee                                        | number | Acquiring and other fees                         |
| pendingFee                                 | number | Funds that are reserved for ongoing fees         |
| available                                  | number | Funds available for operations                   |

## Alternative Payments Methods

Alternative Payments Methods (APM) include non-card transactions. Good examples of Alternative Payments Methods are banklinks, kiosks, e-wallets, etc. See the list of available APMs below.

<table><thead><tr><th width="170">Type</th><th width="104">Type ID</th><th width="178">Method</th><th width="115">Country</th><th>Request example</th></tr></thead><tbody><tr><td>APM Test Payment</td><td>1</td><td>Link</td><td></td><td><a data-mention href="#link-request-example-for-apm-test-payment-1">#link-request-example-for-apm-test-payment-1</a></td></tr><tr><td>APM Test Payout</td><td>2</td><td>APM Payout</td><td></td><td><a data-mention href="#apm-payout-example-for-apm-test-payout-2">#apm-payout-example-for-apm-test-payout-2</a></td></tr><tr><td>Unified Payments Interface (UPI)</td><td>2000</td><td>Link / APM Payout</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Google Pay</td><td>2001</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>JioMoney</td><td>2002</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Airtel Money Wallet</td><td>2003</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Reliance Jio Wallet</td><td>2004</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Freecharge Wallet</td><td>2005</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Phonepe Wallet</td><td>2006</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Amazon Wallet</td><td>2007</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Ola Money Wallet</td><td>2008</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Mobikwik Wallet</td><td>2009</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank Of Maharashtra</td><td>2010</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Central Bank Of India</td><td>2011</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>HDFC Bank</td><td>2012</td><td>Link / APM Payout</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Canara Bank</td><td>2013</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank Of India</td><td>2014</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>City Union Bank</td><td>2015</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Federal Bank</td><td>2016</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Icici Bank</td><td>2017</td><td>Link / APM Payout</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Indian Bank</td><td>2018</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Indian Overseas Bank</td><td>2019</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Industrial Development Bank Of India</td><td>2020</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Indusind Bank</td><td>2021</td><td>Link / APM Payout</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Jammu And Kashmir Bank</td><td>2022</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Karnataka Bank Ltd</td><td>2023</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Karur Vysya Bank</td><td>2024</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>State Bank of India</td><td>2025</td><td>Link / APM Payout</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>South Indian Bank</td><td>2026</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Kotak Bank</td><td>2027</td><td>Link / APM Payout</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Union Bank Of India</td><td>2028</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank Of Baroda Retail Accounts</td><td>2029</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Yes Bank</td><td>2030</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Andhra Bank</td><td>2031</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Uco Bank</td><td>2032</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Catholic Syrian Bank</td><td>2033</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Allahabad Bank</td><td>2034</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Dhanalaxmi Bank Corporate</td><td>2035</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Laxmi Vilas Bank - Corporate Net Banking</td><td>2036</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Punjab National Bank</td><td>2037</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Standard Chartered Bank</td><td>2038</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Punjab And Sind Bank</td><td>2039</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Saraswat Cooperative Bank</td><td>2040</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>VISA/MC/RuPay India</td><td>2041</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Paytm, IN, Online</td><td>2042</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>UPI P2P</td><td>2043</td><td>Link</td><td>India</td><td><a href="#request-example-for-certain-methods.-1">#Request example for certain methods. (1)</a></td></tr><tr><td>Cosmos Bank</td><td>2050</td><td>Link</td><td>India</td><td><a href="#request-example-for-certain-methods.-1">#Request example for certain methods. (1)</a></td></tr><tr><td>Deutsche Bank</td><td>2051</td><td>Link</td><td>India</td><td><a href="#request-example-for-certain-methods.-1">#Request example for certain methods. (1)</a></td></tr><tr><td>Development Credit Bank</td><td>2052</td><td>Link</td><td>India</td><td><a href="#request-example-for-certain-methods.-1">#Request example for certain methods. (1)</a></td></tr><tr><td>IDFC BANK</td><td>2053</td><td>Link / APM Payout</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Shamrao Vithal Cooperative Bank</td><td>2054</td><td>Link</td><td>India</td><td><a href="#request-example-for-certain-methods.-1">#Request example for certain methods. (1)</a></td></tr><tr><td>Tamilnad Mercantile Bank</td><td>2055</td><td>APM Payout</td><td>India</td><td><a href="#apm-payout-request-example-for-certain-methods.-2">APM Payout request example for certain methods. (2)</a></td></tr><tr><td>India Bank Selection</td><td>2060</td><td>Link</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>DCB Bank</td><td>2071</td><td>Link</td><td>India</td><td><a href="#request-example-for-certain-methods.-1">#Request example for certain methods. (1)</a></td></tr><tr><td>Axis Bank</td><td>2081</td><td>Link / APM Payout</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bandhan Bank</td><td>2082</td><td>Link / APM Payout</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank Of Baroda</td><td>2083</td><td>Link / APM Payout</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Federal Bank LTD</td><td>2084</td><td>Link / APM Payout</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>IDBI Bank</td><td>2085</td><td>Link / APM Payout</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>India Post Payment Bank</td><td>2086</td><td>Link / APM Payout</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Jammu and Kashmir Bank Limited</td><td>2087</td><td>Link / APM Payout</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Karnataka Bank Limited</td><td>2088</td><td>Link / APM Payout</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Lakshmi Vilas Bank</td><td>2090</td><td>Link / APM Payout</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>PAYTM Payments Bank LTD</td><td>2091</td><td>Link / APM Payout</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Ujjivan Small Finance Bank</td><td>2092</td><td>Link / APM Payout</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>UPI Payouts</td><td>3020</td><td>APM Payout</td><td>India</td><td><a data-mention href="#apm-payout-request-example-for-upi-3020">#apm-payout-request-example-for-upi-3020</a></td></tr><tr><td>Bank Transfer Payouts</td><td>3021</td><td>APM Payout</td><td>India</td><td><a data-mention href="#apm-payout-request-example-to-india-bank-account-3021">#apm-payout-request-example-to-india-bank-account-3021</a></td></tr><tr><td>Ratnakar Bank (RBL Bank)</td><td>3012</td><td>Link / APM Payout</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Equitas Bank</td><td>3003</td><td>Link / APM Payout</td><td>India</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>FEDERAL BANK LTD PAYOUT</td><td>3023</td><td>APM Payout</td><td>India</td><td><a href="#apm-payout-request-example-for-certain-methods.-2">APM Payout request example for certain methods. (2)</a></td></tr><tr><td>Hdfc Bank Payout</td><td>3024</td><td>APM Payout</td><td>India</td><td><a href="#apm-payout-request-example-for-certain-methods.-2">APM Payout request example for certain methods. (2)</a></td></tr><tr><td>IDFC Bank Payout</td><td>3025</td><td>APM Payout</td><td>India</td><td><a href="#apm-payout-request-example-for-certain-methods.-2">APM Payout request example for certain methods. (2)</a></td></tr><tr><td>Indian Bank Payout</td><td>3026</td><td>APM Payout</td><td>India</td><td><a href="#apm-payout-request-example-for-certain-methods.-2">APM Payout request example for certain methods. (2)</a></td></tr><tr><td>Indusind Bank Payout</td><td>3027</td><td>APM Payout</td><td>India</td><td><a href="#apm-payout-request-example-for-certain-methods.-2">APM Payout request example for certain methods. (2)</a></td></tr><tr><td>Kotak Bank Payout</td><td>3028</td><td>APM Payout</td><td>India</td><td><a href="#apm-payout-request-example-for-certain-methods.-2">APM Payout request example for certain methods. (2)</a></td></tr><tr><td>Techcombank</td><td>7000</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Sacombank</td><td>7001</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Vietcombank</td><td>7002</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Asia Commercial Bank</td><td>7003</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>DongA Bank</td><td>7004</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Vietinbank</td><td>7005</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>BIDV Bank</td><td>7006</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Eximbank</td><td>7007</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Agribank</td><td>7008</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>USDT Crypto ERC20</td><td>7009</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>USDT Crypto BEP20</td><td>7010</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Asia Commercial Bank (QR service)</td><td>7061</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>BIDV Bank (QR service)</td><td>7062</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Vietcombank (QR service)</td><td>7063</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Vietinbank (QR service)</td><td>7064</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Momo QR Payment (QR service)</td><td>7065</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Zalo QR Payment (QR service)</td><td>7066</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Zalo H5 Payment (H5 service)</td><td>7067</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Vietnam Prosperity Joint-Stock Commercial Bank (QR Service)</td><td>7068</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Military Commercial Bank (QR Service)</td><td>7069</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Techcombank (QR Service)</td><td>7070</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>TP Bank</td><td>7091</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Siam Commercial Bank</td><td>7092</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>SHB Bank</td><td>7093</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>MB Bank</td><td>7094</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Vietnam International Bank</td><td>7095</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>AB Bank</td><td>7096</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>HD Bank</td><td>7097</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Vietnam Prosperity Joint-Stock Commercial Bank</td><td>7098</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Saigo Hanoi Commercial Joint Stock Bank</td><td>22000</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Military Commercial Joint Stock Bank</td><td>22001</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Global Petro Bank</td><td>22002</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Saigon Bank</td><td>22003</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>PG Bank</td><td>22004</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Ocean Bank</td><td>22005</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Nam A Commercial Joint Stock Bank</td><td>22006</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Tien Phong Commercia</td><td>22007</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Ho Chi Minh City Development Joint Stock Commercia</td><td>22008</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Vietname Asia Commercial Bank</td><td>22009</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Sai Gon Joint Stock Commercial Bank</td><td>22010</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Vietnam Maritime Commercial Joint Stock Bank</td><td>22016</td><td>APM Payout</td><td>Vietnam</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>VIB</td><td>22017</td><td>Link / APM Payout</td><td>Vietnam</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>OCB</td><td>22023</td><td>APM Payout</td><td>Vietnam</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>NCB</td><td>22034</td><td>APM Payout</td><td>Vietnam</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>PVcomBank</td><td>22036</td><td>APM Payout</td><td>Vietnam</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Viettel Pay</td><td>22050</td><td>Link</td><td>Vietnam</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></td></tr><tr><td>Vinaphone</td><td>22051</td><td>Link</td><td>Vietnam</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></td></tr><tr><td>Mobiphone</td><td>22052</td><td>Link</td><td>Vietnam</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></td></tr><tr><td>Vietnammobile</td><td>22053</td><td>Link</td><td>Vietnam</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></td></tr><tr><td>Zing</td><td>22054</td><td>Link</td><td>Vietnam</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></td></tr><tr><td>Gate</td><td>22055</td><td>Link</td><td>Vietnam</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></td></tr><tr><td>Vcoin</td><td>22056</td><td>Link</td><td>Vietnam</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></td></tr><tr><td>Gerena</td><td>22057</td><td>Link</td><td>Vietnam</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></td></tr><tr><td>Viettelphone</td><td>22058</td><td>Link</td><td>Vietnam</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></td></tr><tr><td>AN BINH</td><td>22059</td><td>APM Payout</td><td>Vietnam</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Krung Thai Bank</td><td>7011</td><td>Link / APM Payout</td><td>Thailand</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Siam Commercial Bank</td><td>7012</td><td>Link / APM Payout</td><td>Thailand</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bangkok bank</td><td>7013</td><td>Link / APM Payout</td><td>Thailand</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Kasikorn Bank</td><td>7014</td><td>Link / APM Payout</td><td>Thailand</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Thai Military Bank</td><td>7015</td><td>Link / APM Payout</td><td>Thailand</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Krungsri bank</td><td>7016</td><td>Link / APM Payout</td><td>Thailand</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>CIMB Thai Bank Public Company Limited</td><td>7017</td><td>Link / APM Payout</td><td>Thailand</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Government Savings Bank</td><td>7018</td><td>Link / APM Payout</td><td>Thailand</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>United Overseas Bank (Thai) PCL.</td><td>7019</td><td>Link / APM Payout</td><td>Thailand</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Government Housing Bank</td><td>7020</td><td>Link / APM Payout</td><td>Thailand</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Hong Kong Shanghai Bank</td><td>7021</td><td>Link / APM Payout</td><td>Thailand</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Standard Chartered Bank (Thai) PCL.</td><td>7022</td><td>Link / APM Payout</td><td>Thailand</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Land and Houses Bank Public Company Limited</td><td>7023</td><td>Link / APM Payout</td><td>Thailand</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Thai QR Payment</td><td>7071</td><td>Link / APM Payout</td><td>Thailand</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>USDT Crypto ERC20</td><td>7072</td><td>Link / APM Payout</td><td>Thailand</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>USDT Crypto BEP20</td><td>7073</td><td>Link / APM Payout</td><td>Thailand</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>UOB Bank</td><td>7088</td><td>APM Payout</td><td>Thailand</td><td><a data-mention href="#apm-payout-request-example-for-certain-methods.-2">#apm-payout-request-example-for-certain-methods.-2</a></td></tr><tr><td>TMBThanachart Bank</td><td>7089</td><td>APM Payout</td><td>Thailand</td><td><a data-mention href="#apm-payout-request-example-for-certain-methods.-2">#apm-payout-request-example-for-certain-methods.-2</a></td></tr><tr><td>Krungthai Bank</td><td>8012</td><td>Link / APM Payout</td><td>Thailand</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Kiatnakin Bank</td><td>8013</td><td>Link / APM Payout</td><td>Thailand</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Of Ayudhya</td><td>31002</td><td>Link / APM Payout</td><td>Thailand</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>TrueMoney</td><td>31026</td><td>Link</td><td>Thailand</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></td></tr><tr><td>TRUEWALLET</td><td>31045</td><td>Link</td><td>Thailand</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></td></tr><tr><td>QR</td><td>31046</td><td>Link</td><td>Thailand</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></td></tr><tr><td>Bank Central Asia</td><td>7024</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Negara Indonesia</td><td>7025</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Mandiri</td><td>7026</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Rakyat Indonesia</td><td>7027</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Artha Graha (Support VA Wallet Only)</td><td>7028</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Bukopin (Support VA Wallet Only)</td><td>7029</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Commonwealth (Support VA Wallet Only)</td><td>7030</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Danamon (Support VA Wallet Only)</td><td>7031</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Mega (Support VA Wallet Only)</td><td>7032</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Maspion (Support VA Wallet Only)</td><td>7033</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Mestika (Support VA Wallet Only)</td><td>7034</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Panin (Support VA Wallet Only)</td><td>7035</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Sumut (Support VA Wallet Only)</td><td>7036</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Sinar Mas (Support VA Wallet Only)</td><td>7037</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Btpn (Support VA Wallet Only)</td><td>7038</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>CIMB Niaga (Support VA Wallet Only)</td><td>7039</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>HSBC Indonesia (Support VA Wallet Only)</td><td>7040</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Maybank /bii (Support VA Wallet Only)</td><td>7041</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>OCBC Indonesia (Support VA Wallet Only)</td><td>7042</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Permata (Support VA Wallet Only)</td><td>7043</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>UOB Indonesia (Support VA Wallet Only)</td><td>7044</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Negara Indonesia (VA)</td><td>7074</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Mandiri (VA)</td><td>7075</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Rakyat Indonesia (VA)</td><td>7076</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Maybank Indonesia (VA)</td><td>7077</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Sahabat Sampoerna (VA)</td><td>7078</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Sinarmas (VA)</td><td>7079</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>CIMB Niaga (VA)</td><td>7080</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Permata (VA)</td><td>7081</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>USDT Crypto ERC20</td><td>7082</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>USDT Crypto BEP20</td><td>7083</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Tabungan Negara Bank</td><td>7099</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Quick Response Indonesia Standard</td><td>8015</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank BJB</td><td>21000</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank DKI</td><td>21001</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank BPD DIY</td><td>21002</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Jateng</td><td>21003</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Jatim</td><td>21004</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Nagar</td><td>21005</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Riau Kepri</td><td>21006</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Sumselbabel</td><td>21007</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Kalbar</td><td>21008</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Kaltimtara</td><td>21009</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Kalteng</td><td>21010</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Sulselbar</td><td>21011</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank BPD Bali</td><td>21012</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Maluku Malut</td><td>21013</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Papua</td><td>21014</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Banten</td><td>21015</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank BNP</td><td>21016</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Muamalat</td><td>21017</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Shinhan</td><td>21018</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank QNB Indonesia</td><td>21019</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank BTN</td><td>21020</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Woori Saudara</td><td>21021</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Jasa Jakarta</td><td>21022</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank KEB Hana Indonesia</td><td>21023</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank MNC</td><td>21024</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank SBI Indonesia</td><td>21025</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Digital BCA (Blu) / Bank Royal</td><td>21026</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank National Nobu</td><td>21027</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Ina Perdana</td><td>21028</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Prima Master Bank</td><td>21029</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Sahabat Sampoerna</td><td>21030</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Multiarta Sentosa</td><td>21031</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Index Selindo</td><td>21032</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Victoria</td><td>21033</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Harda Internasional</td><td>21034</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>IBK Bank Indonesia</td><td>21035</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank CTBC Indonesia</td><td>21036</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Citibank Indonesia</td><td>21037</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank CCB Indonesia</td><td>21038</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>MUFG Bank</td><td>21039</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank DBS Indonesia</td><td>21040</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Standard Chartered Bank</td><td>21041</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Capital Indonesia</td><td>21042</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank of China Jakarta Branch</td><td>21043</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Bumi Arta</td><td>21044</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Rabobank</td><td>21045</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Jtrust Indonesia</td><td>21046</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Mayapada</td><td>21047</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank IDRK</td><td>21048</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Central Asian (Virtual Account)</td><td>21049</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Panin Bank</td><td>21050</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Danamon</td><td>21051</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Bukopin</td><td>21052</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Mega</td><td>21053</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Sinarmas</td><td>21054</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank BTN (Virtual Account)</td><td>21055</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Maybank Indonesia</td><td>21056</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>Bank Permata</td><td>21057</td><td>Link / APM Payout</td><td>Indonesia</td><td><p><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></p><p><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></p></td></tr><tr><td>OVO</td><td>21058</td><td>Link</td><td>Indonesia</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></td></tr><tr><td>DANA</td><td>21059</td><td>Link</td><td>Indonesia</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></td></tr><tr><td>GO-PAY</td><td>21060</td><td>Link</td><td>Indonesia</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></td></tr><tr><td>Va - Maybank</td><td>21061</td><td>Link</td><td>Indonesia</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></td></tr><tr><td>QRIS</td><td>21071</td><td>Link</td><td>Indonesia</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></td></tr><tr><td>VA</td><td>21072</td><td>Link</td><td>Indonesia</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></td></tr><tr><td>Affin Bank Berhad / Affin Islamic Bank</td><td>7045</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Alliance Bank</td><td>7046</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Ambank Berhad</td><td>7047</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank Islam Malaysia</td><td>7048</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank Rakyat Malaysia Berhad</td><td>7049</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank Simpanan Nasional Berhad</td><td>7050</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>CIMB Bank</td><td>7051</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>CITI Bank</td><td>7052</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Hong Leong Bank</td><td>7053</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>HSBC Bank Malaysia Berhad</td><td>7054</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Maybank Berhad</td><td>7055</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>OCBC Bank (Malaysia) BHD</td><td>7056</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Public Bank</td><td>7057</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>RHB Bank</td><td>7058</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>United Overseas Bank Berhad</td><td>7060</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>USDT Crypto ERC20</td><td>7084</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>USDT Crypto BEP20</td><td>7085</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Standart Chartered Bank</td><td>7090</td><td>APM Payout</td><td>Malaysia</td><td><a data-mention href="#apm-payout-request-example-for-certain-methods.-2">#apm-payout-request-example-for-certain-methods.-2</a></td></tr><tr><td>BANK ISLAM MALAYSIA (FPX)</td><td>8016</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>CIMB Bank (FPX)</td><td>8017</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Maybank (FPX)</td><td>8018</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Public Bank (FPX)</td><td>8019</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>MYR QR</td><td>8020</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>RHB Bank (FPX)</td><td>8021</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>STANDARD CHARTERED BANK (FPX)</td><td>8022</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>QR Pay</td><td>23000</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Boost EWallet</td><td>23001</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Hong Leong Bank (FPX)</td><td>23002</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>HSBC Bank Malaysia (FPX)</td><td>23003</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>UOB Bank (FPX)</td><td>23004</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>OCBC Bank (Malaysia) (FPX)</td><td>23005</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Alliance Bank (FPX)</td><td>23006</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Ambank (FPX)</td><td>23007</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank Simpanan Nasional (FPX)</td><td>23008</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Affin Bank Berhad (FPX)</td><td>23009</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank Rakyat (FPX)</td><td>23010</td><td>Link / APM Payout</td><td>Malaysia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank Kerjasama Rakyat</td><td>23012</td><td>APM Payout</td><td>Malaysia</td><td><a href="#apm-payout-request-example-for-certain-methods.-2">APM Payout request example for certain methods. (2)</a></td></tr><tr><td>TNG</td><td>23034</td><td>Link</td><td>Malaysia</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></td></tr><tr><td>DQR</td><td>23035</td><td>Link</td><td>Malaysia</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a></td></tr><tr><td>Industrial and Commercial Bank of China</td><td>9000</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Agricultural Bank of China</td><td>9001</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>China Merchants Bank</td><td>9002</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>China Construction Bank</td><td>9003</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>China Minsheng Bank</td><td>9004</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of China</td><td>9005</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of Communications</td><td>9006</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Industrial Bank</td><td>9007</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>China Everbright Bank</td><td>9008</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>China Guangfa Bank</td><td>9009</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Postal Savings Bank of China</td><td>9010</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>China CITIC Bank</td><td>9011</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Shanghai Pudong Development Bank</td><td>9012</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Ping An Bank</td><td>9013</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Huaxia Bank</td><td>9014</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Agricultural Development Bank of China</td><td>9015</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of Shanghai</td><td>9016</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of Beijing</td><td>9017</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of Jiangsu</td><td>9018</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of ChengDu</td><td>9019</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of Nanjing</td><td>9020</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of HangZhou</td><td>9021</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Hengfeng Bank</td><td>9022</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of Qingdao</td><td>9023</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of Dalian</td><td>9024</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of GuangZhou</td><td>9025</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>China Zheshang Bank</td><td>9026</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of Chongqing</td><td>9027</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of Tianjin</td><td>9028</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>China Bohai Bank</td><td>9029</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Baoshang Bank</td><td>9030</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of Ningbo</td><td>9031</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of East Asia</td><td>9032</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>DBS Bank</td><td>9033</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Xiamen Bank</td><td>9034</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of Jiujiang</td><td>9035</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of Guiyang</td><td>9036</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Guilin Bank</td><td>9037</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of ShaoXin</td><td>9038</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of WenZhou</td><td>9039</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of FuDian</td><td>9040</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of NingXia</td><td>9041</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of Jilin</td><td>9042</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Krungthai Bank</td><td>9043</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of Suzhou</td><td>9044</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of Kunlun</td><td>9045</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of Hubei</td><td>9046</td><td>Link / APM Payout</td><td>China</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>MTN Mobile Money</td><td>11000</td><td>Link</td><td>Uganda</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Airtel Money</td><td>11001</td><td>Link</td><td>Uganda</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>MTN Mobile Money</td><td>11002</td><td>APM Payout</td><td>Uganda</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Airtel Money</td><td>11003</td><td>APM Payout</td><td>Uganda</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Safaricom M-Pesa</td><td>12000</td><td>Link</td><td>Kenya</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Airtel Money KE</td><td>12001</td><td>Link</td><td>Kenya</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Equitel KE</td><td>12002</td><td>Link</td><td>Kenya</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Safaricom M-Pesa</td><td>12003</td><td>APM Payout</td><td>Kenya</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Airtel Money KE</td><td>12004</td><td>APM Payout</td><td>Kenya</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Equitel KE</td><td>12005</td><td>APM Payout</td><td>Kenya</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>MTN Mobile Money</td><td>13000</td><td>Link</td><td>Rwanda</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>AirtelTigo Rwanda</td><td>13001</td><td>Link</td><td>Rwanda</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>MTN Mobile Money Payout</td><td>13002</td><td>APM Payout</td><td>Rwanda</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>AirtelTigo Rwanda Payout</td><td>13003</td><td>APM Payout</td><td>Rwanda</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>MTN Mobile Money</td><td>14000</td><td>Link</td><td>Ghana</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Vodafone Cash</td><td>14001</td><td>Link</td><td>Ghana</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>AirtelTigo Ghana</td><td>14002</td><td>Link</td><td>Ghana</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>MTN Ghana</td><td>14003</td><td>APM Payout</td><td>Ghana</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Vodafone Ghana</td><td>14004</td><td>APM Payout</td><td>Ghana</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>AirtelTigo Ghana</td><td>14005</td><td>APM Payout</td><td>Ghana</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Econet Ecocash</td><td>15000</td><td>Link</td><td>Burundi</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Econet Ecocash Payout</td><td>15001</td><td>APM Payout</td><td>Burundi</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Supported Banks (Access, FirstBank, GT Bank, Zenith, Sterling, Providus &#x26; Unity Bank)</td><td>16000</td><td>Link</td><td>Nigeria</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Payout Supported Banks (Access, FirstBank, GT Bank, Zenith, Sterling, Providus &#x26; Unity Bank)</td><td>16001</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Supported Banks (ABSA, FNB, Standard, Nedbank, Capitec &#x26; Investec)</td><td>17000</td><td>Link</td><td>South Africa</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Payout Supported Banks (ABSA, FNB, Standard, Nedbank, Capitec &#x26; Investec)</td><td>17001</td><td>APM Payout</td><td>South Africa</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Airtel Money TZ</td><td>18000</td><td>Link</td><td>Tanzania</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Tigo Pesa</td><td>18001</td><td>Link</td><td>Tanzania</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Vodacom M-Pesa</td><td>18002</td><td>Link</td><td>Tanzania</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Airtel Money TZ Payout</td><td>18003</td><td>APM Payout</td><td>Tanzania</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Tigo Pesa Payout</td><td>18004</td><td>APM Payout</td><td>Tanzania</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Vodacom M-Pesa Payout</td><td>18005</td><td>APM Payout</td><td>Tanzania</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>MTN Mobile Money</td><td>19000</td><td>Link</td><td>Cameroon</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Orange Money</td><td>19001</td><td>Link</td><td>Cameroon</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>MTN Mobile Money Payout</td><td>19002</td><td>APM Payout</td><td>Cameroon</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Orange Money Payout </td><td>19003</td><td>APM Payout</td><td>Cameroon</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>MTN Zambia</td><td>20000</td><td>Link</td><td>Zambia</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Airtel Zambia</td><td>20001</td><td>Link</td><td>Zambia</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Zamtel Zambia</td><td>20002</td><td>Link</td><td>Zambia</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>MTN Zambia Payout</td><td>20003</td><td>APM Payout</td><td>Zambia</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Airtel Zambia Payout</td><td>20004</td><td>APM Payout</td><td>Zambia</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Zamtel Zambia Payout</td><td>20005</td><td>APM Payout</td><td>Zambia</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Curfex Japan</td><td>24000</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Momiji Bank</td><td>24001</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>SMBC Trust Bank Ltd.</td><td>24002</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Nagasaki Bank</td><td>24003</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>77 Bank</td><td>24004</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Chiba Bank</td><td>24005</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Shinsei Bank</td><td>24006</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Kitakyushu Bank</td><td>24007</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Aeon Bank</td><td>24008</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Bank of America Corporation</td><td>24009</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Tama Shinkin Bank</td><td>24010</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Shiga Bank</td><td>24011</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Chiba Kogyo Bank</td><td>24012</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Hiroshima Bank</td><td>24013</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Mizuho Bank</td><td>24014</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Aichi Doctors Credit Cooperative</td><td>24015</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Hyaku Jyushi Bank</td><td>24017</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Ikeda Senshu Bank</td><td>24018</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>JPMorgan Chase Bank, N.A</td><td>24019</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Amagasaki Shinkin Bank</td><td>24020</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Michinoku Bank</td><td>24021</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Daito Bank</td><td>24022</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Miyazaki Bank</td><td>24023</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Kirayaka Bank</td><td>24024</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Jouyou Bank</td><td>24025</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Osaka Shinkin Bank</td><td>24026</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Abashiri Shinkin Bank</td><td>24027</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Aomori Bank</td><td>24028</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Tochigi Bank</td><td>24029</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Tohoku Bank</td><td>24030</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Kanagawa Bank</td><td>24031</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Shimizu Bank</td><td>24032</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Iyo Bank</td><td>24033</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Ashikaga Bank</td><td>24034</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Daisan Bank</td><td>24035</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Kiyou Bank</td><td>24036</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Chukyo Bank</td><td>24037</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>The Hongkong and Shanghai Banking Corporation Limit</td><td>24038</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>SBJ Bank</td><td>24039</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Japan Post Bank</td><td>24040</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Nagano Bank</td><td>24041</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Juroku Banks</td><td>24042</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Oogaki Kyoritsu Bank</td><td>24043</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Sumitomo Mitsui Banking Corporation</td><td>24044</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Toyama Bank</td><td>24045</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Suruga Bank</td><td>24046</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Awa Bank</td><td>24047</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Saitama Resona Bank</td><td>24048</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Ryukyu Bank</td><td>24049</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Hyakugo Banks</td><td>24050</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Shonai Bank</td><td>24051</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Seven Bank</td><td>24052</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Tomato Bank</td><td>24053</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Nishi Nihon City Bank</td><td>24054</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Yamagata Bank</td><td>24055</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Chikubo Bank</td><td>24056</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Shikoku Bank</td><td>24057</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Fukushima Bank</td><td>24058</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Sendai Bank</td><td>24059</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Higo Bank</td><td>24060</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Musashino Bank</td><td>24061</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Akita Bank</td><td>24062</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Saikyo Bank</td><td>24063</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Hokkaido Bank</td><td>24064</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Citibank, N.A</td><td>24065</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Oita Bank</td><td>24066</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Yokohama Bank</td><td>24067</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Rakuten Bank</td><td>24068</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Aichi Bank</td><td>24069</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Daishi Bank</td><td>24070</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Sanin Goudou Bank</td><td>24071</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Okinawa Kaiho Bank</td><td>24072</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Kumamoto Bank</td><td>24073</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Tottori Bank</td><td>24074</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>The Hiroshima Shinkin Bank</td><td>24075</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Saga Kyoei Bank</td><td>24076</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Yamanashi Chuo Bank</td><td>24077</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Mie Bank</td><td>24078</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Aozora Bank</td><td>24079</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Tsukuba Bank</td><td>24080</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Howa Bank</td><td>24081</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>The Oita Mirai Shinkin Bank</td><td>24082</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Okinawa Bank</td><td>24083</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Nagoya Bank</td><td>24084</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Lawson Bank</td><td>24085</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Sony Bank</td><td>24086</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Aichi Shogin</td><td>24087</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Shinwa Bank</td><td>24088</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Minato Bank</td><td>24089</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Fukuoka Chuo Bank</td><td>24090</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Shizuoka Bank</td><td>24091</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Resona Bank</td><td>24092</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Tokyo Star Bank</td><td>24093</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>PayPay Bank (The Japan Net Bank)</td><td>24094</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Hokuto Bank</td><td>24095</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Tokushima Bank</td><td>24096</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Yamaguchi Bank</td><td>24097</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Kagawa Bank</td><td>24098</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Towa Bank</td><td>24099</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Fukui Bank</td><td>24100</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Abukuma Shinkin Bank</td><td>24101</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Minami Nippon Bank</td><td>24102</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Touhou Bank</td><td>24103</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Miyazaki Taiyo Bank</td><td>24104</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Sumishin SBI Net Bank</td><td>24105</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Mitsubishi UFJ Trust and Banking Corporation</td><td>24106</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Shizuoka Chuo Bank</td><td>24107</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Deutsche Bank</td><td>24108</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Kyoto Bank</td><td>24109</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Hachijuni Banks</td><td>24110</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Keiyo Bank</td><td>24111</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>North Pacific Bank</td><td>24112</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>First Bank of Toyama</td><td>24113</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Kansai Mirai Bank</td><td>24114</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Mitsubishi UFJ Bank</td><td>24115</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Ehime Bank</td><td>24116</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Aichi Shinkin Bank</td><td>24117</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Kochi Bank</td><td>24118</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Fukuoka Bank</td><td>24119</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Iwate Bank</td><td>24120</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Shimane Bank</td><td>24121</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Daiwa Next Bank</td><td>24122</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Jibun Bank</td><td>24123</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>China Bank</td><td>24124</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Jyuhachi Bank</td><td>24125</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Hokuetsu Bank</td><td>24126</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Kagoshima Bank</td><td>24127</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Kiraboshi Bank</td><td>24128</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Nanto Bank</td><td>24129</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Kita-Nippon Bank</td><td>24130</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Hokkoku Bank</td><td>24131</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Fukuho Bank</td><td>24132</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Taiko Bank</td><td>24133</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Kyoto Chuo Shinkin Bank</td><td>24134</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>The Kyoto Shinkin Bank</td><td>24135</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Hokuriku Bank</td><td>24136</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Higashi-Nippon Bank</td><td>24137</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Taisho Bank</td><td>24138</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Tajima Bank</td><td>24139</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Gunma Bank</td><td>24140</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Saga Bank</td><td>24141</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>JPY Fund Transfer</td><td>24142</td><td>Link / APM Payout</td><td>Japan</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>G-XChange Inc. (GCash)</td><td>40000</td><td>Link / APM Payout</td><td>Philippines</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a> <a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>PayMaya Philippines</td><td>40001</td><td>Link / APM Payout</td><td>Philippines</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a> <a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>WOORI BANK</td><td>50000</td><td>Link / APM Payout</td><td>South Korea</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>DAEGU BANK</td><td>50001</td><td>Link / APM Payout</td><td>South Korea</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>BUSAN BANK</td><td>50002</td><td>Link / APM Payout</td><td>South Korea</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>SHINHAN BANK</td><td>50003</td><td>Link / APM Payout</td><td>South Korea</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>KOOKMIN BANK</td><td>50004</td><td>Link / APM Payout</td><td>South Korea</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>KEB HANA BANK</td><td>50005</td><td>Link / APM Payout</td><td>South Korea</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>KYONGNAM BANK</td><td>50006</td><td>Link / APM Payout</td><td>South Korea</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>KOREA POST OFFICE</td><td>50007</td><td>Link / APM Payout</td><td>South Korea</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>INDUSTRIAL BANK OF KOREA</td><td>50008</td><td>Link / APM Payout</td><td>South Korea</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>STANDARD CHARTERED FIRST BANK KOREA</td><td>50009</td><td>Link / APM Payout</td><td>South Korea</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>NATIONAL AGRICULTURAL COOPERATIVE FEDERATION</td><td>50010</td><td>Link / APM Payout</td><td>South Korea</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Kyongnam Bank Payout</td><td>50011</td><td>APM Payout</td><td>South Korea</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Kwangju Bank Payout</td><td>50012</td><td>APM Payout</td><td>South Korea</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Kookmin Bank Payout</td><td>50013</td><td>APM Payout</td><td>South Korea</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Industrial Bank of Korea Payout</td><td>50014</td><td>APM Payout</td><td>South Korea</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Daegu Bank Payout</td><td>50015</td><td>APM Payout</td><td>South Korea</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Busan Bank Payout</td><td>50016</td><td>APM Payout</td><td>South Korea</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Korea Development Bank Payout</td><td>50017</td><td>APM Payout</td><td>South Korea</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>KakaoBank Payout</td><td>50018</td><td>APM Payout</td><td>South Korea</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Suhyup Bank (NFFC) Payout</td><td>50019</td><td>APM Payout</td><td>South Korea</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Standard Chartered Bank Korea Payout</td><td>50020</td><td>APM Payout</td><td>South Korea</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Shinhan Bank Payout</td><td>50021</td><td>APM Payout</td><td>South Korea</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Woori Bank Payout</td><td>50022</td><td>APM Payout</td><td>South Korea</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Korea Post Bank Payout</td><td>50023</td><td>APM Payout</td><td>South Korea</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Jeonbuk Bank Payout</td><td>50024</td><td>APM Payout</td><td>South Korea</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Jeju Bank Payout</td><td>50025</td><td>APM Payout</td><td>South Korea</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Korea Exchange Bank (KEB Hana Bank) Payout</td><td>50026</td><td>APM Payout</td><td>South Korea</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Citibank Korea Payout</td><td>50027</td><td>APM Payout</td><td>South Korea</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>K-Bank Payout</td><td>50028</td><td>APM Payout</td><td>South Korea</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>National Agricultural Cooperative Federation Payout</td><td>50029</td><td>APM Payout</td><td>South Korea</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Korea Fedration of Community Credi Cooperative Payout</td><td>50030</td><td>APM Payout</td><td>South Korea</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>National Credit Union Federation of Korea Payout</td><td>50031</td><td>APM Payout</td><td>South Korea</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Local Cooperative Federation Payout</td><td>50032</td><td>APM Payout</td><td>South Korea</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Advanced Bank of Asia</td><td>51000</td><td>Link / APM Payout</td><td>Cambodia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Wing Bank</td><td>51001</td><td>Link / APM Payout</td><td>Cambodia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>ACLEDA Bank</td><td>51002</td><td>Link / APM Payout</td><td>Cambodia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>DBS BANK LIMITED</td><td>55001</td><td>Link / APM Payout</td><td>Singapore</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a> <a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>MAYBANK - MBB</td><td>55002</td><td>APM Payout</td><td>Singapore</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>MAYBANK - MBBE</td><td>55003</td><td>APM Payout</td><td>Singapore</td><td><a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>OCBC BANK</td><td>55004</td><td>Link / APM Payout</td><td>Singapore</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a> <a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>STANDARD CHARTERED</td><td>55005</td><td>Link / APM Payout</td><td>Singapore</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a> <a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>UNITED OVERSEAS BANK LIMITED</td><td>55006</td><td>Link / APM Payout</td><td>Singapore</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a> <a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>BKash</td><td>56000</td><td>Link / APM Payout</td><td>Bangladesh</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a> <a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Nagad</td><td>56001</td><td>Link / APM Payout</td><td>Bangladesh</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a> <a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Rocket</td><td>56002</td><td>Link / APM Payout</td><td>Bangladesh</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a> <a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Upay</td><td>56003</td><td>Link / APM Payout</td><td>Bangladesh</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a> <a href="#apm-request-example-for-certain-methods.-1">APM request example for certain methods. (1)</a></td></tr><tr><td>Pago Seguro Electronico (PSE)</td><td>57000</td><td>Link</td><td>Columbia</td><td><a href="#link-request-example-for-certain-methods.-1">Link request example for certain methods. (1)</a> </td></tr><tr><td>USDT Crypto ERC20</td><td>7086</td><td>Link / APM Payout</td><td></td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>USDT Crypto BEP20</td><td>7087</td><td>Link / APM Payout</td><td></td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>P2P (FX and BC)</td><td>8000</td><td>Link</td><td></td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>P2P</td><td>8001</td><td>Link</td><td></td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>TRC20</td><td>8002</td><td>Link</td><td></td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>ERC20</td><td>8003</td><td>Link</td><td></td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>P2P_RealName_SkipName1</td><td>8004</td><td>Link</td><td></td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>P2P_RealName_SkipName2</td><td>8005</td><td>Link</td><td></td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>IDR P2P</td><td>8006</td><td>Link</td><td></td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>THB P2P</td><td>8007</td><td>Link</td><td></td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>THB QR1</td><td>8008</td><td>Link</td><td></td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>MYR P2P</td><td>8009</td><td>Link</td><td></td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>THB QR2</td><td>8010</td><td>Link</td><td></td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>Noda Pay Bank</td><td>8011</td><td>Link / APM Payout</td><td></td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Switchere</td><td>8025</td><td>Link</td><td></td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>PayAtom</td><td>8026</td><td>Link</td><td></td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>VNDP2Predirect</td><td>8027</td><td>Link</td><td></td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr><tr><td>IDR VA</td><td>8028</td><td>Link</td><td></td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a></td></tr></tbody></table>

APM Payments can be requested using the [Link](#link) API. When the Link API is requested, the corresponding APM Type ID must be supplied in the *paymentTypeId* field of the data object.&#x20;

#### Link request example for APM Test Payment (1)

```javascript
{
	"amount": 700,
	"accountId": "john@deer.com",
        "currency": "EUR",
	"description": "Payment for products",
	"invoiceId": "08072021-01",
	"successUrl": "https://example.com/success",
	"failureUrl": "https://example.com/failure",
        "pendingUrl": "https://example.com/pending",
        "cancelUrl": "https://example.com/cancel",
        "data": {
              "personId": "success@bank",
              "firstName": "John",
              "lastName": "Deer",
              "phone": "9555777666",
              "address": "Avishkar Ram Maruti Naupada 66 2",
              "paymentTypeId": 1
          }
}
```

## APM Payout

<mark style="color:green;">`POST`</mark> `https://api.api-wasabigate.com/payments/apm/payout`&#x20;

APM Payout include non-card transaction payouts. Goods examples of APM Payouts are payouts to e-wallets or bank accounts.

#### Headers

| Name                                            | Type   | Description               |
| ----------------------------------------------- | ------ | ------------------------- |
| Content-Type<mark style="color:red;">\*</mark>  | string | application/json          |
| Authorization<mark style="color:red;">\*</mark> | string | HTTP Basic Authentication |

#### Request Body

| Name                                          | Type   | Description                                                                                                     |
| --------------------------------------------- | ------ | --------------------------------------------------------------------------------------------------------------- |
| description<mark style="color:red;">\*</mark> | string | Payout description in text format                                                                               |
| invoiceId                                     | string | Order or invoice number                                                                                         |
| currency<mark style="color:red;">\*</mark>    | string | Payout currency                                                                                                 |
| amount<mark style="color:red;">\*</mark>      | number | Payout amount                                                                                                   |
| data                                          | object | Additional data required for the payout processing. See request example for available fields in the data object |
| name<mark style="color:red;">\*</mark>        | string | Funds recipient name                                                                                            |
| accountId<mark style="color:red;">\*</mark>   | string | Funds recipient e-mail address                                                                                  |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
    "model": {
        "transactionId": 8432893,
        "amount": 700.0,
        "currency": "INR",
        "invoiceId": "08072021-01",
        "accountId": "john@deer.com",
        "name": "John Deer",
        "statusCode": 10,
        "status": "Created",
        "reasonCode": 0,
        "reason": "Approved"
    },
    "success": true,
    "message": null
}
```

{% endtab %}
{% endtabs %}

#### APM Payout example for APM Test Payout (2)

```javascript
{
	"amount": 10,
	"accountId": "john@deer.com",
	"currency": "EUR",
	"description": "Payment for products",
	"invoiceId": "1928398740527",
 	"name": "John Deer",
	"data": {
            "personId": "success@bank",
            "phone": "9555777666",
            "address": "Avishkar Ram Maruti Naupada 66 2",
            "paymentTypeId": 2
        }
}
```

#### APM Payout Testing credentials for APM Test Payout (2)

| personId      | Result                             |
| ------------- | ---------------------------------- |
| success\@bank | Successful payout test credentials |
| failure\@bank | Failed payout test credentials     |

#### Request example for certain methods. (1)

```json
{
	"amount": 500,
	"accountId": "john@deer.com",
        "currency": "INR",
	"description": "Payment for products",
	"invoiceId": "08072021-01",
	"successUrl": "https://example.com/success",
	"failureUrl": "https://example.com/failure",
        "pendingUrl": "https://example.com/pending",
        "cancelUrl": "https://example.com/cancel",
        "data": {
              "personId": "success@bank",
              "firstName": "John",
              "lastName": "Deer",
              "phone": "9555777666",
              "address": "Avishkar Ram Maruti Naupada 66 2",
              "paymentTypeId": 2000
          }
}
```

#### Link request example for certain methods. (1)

```json
{
 "amount": 100000.00,
 "accountId": "john@deer.com",
 "currency": "THB",
 "description": "Payment for products",
 "invoiceId": "1928398740527",
 "name": "John Deer",
 "successUrl": "https://example.com/success",
 "failureUrl": "https://example.com/failure",
 "pendingUrl": "https://example.com/pending",
 "cancelUrl": "https://example.com/cancel",
 "ip":"87.111.123.218",
 "data": {
            "firstName": "John",
            "lastName": "Deer",
            "paymentTypeId": 7022
        }
}
```

#### APM request example for certain methods. (1)

```json
{
 "amount": 100000.00,
 "accountId": "john@deer.com",
 "currency": "THB",
 "description": "Payment for products",
 "invoiceId": "1928398740527",
 "name": "John Deer",
 "successUrl": "https://example.com/success",
 "failureUrl": "https://example.com/failure",
 "pendingUrl": "https://example.com/pending",
 "cancelUrl": "https://example.com/cancel",
 "ip":"87.111.123.218",
 "data": {
            "firstName": "John",
            "lastName": "Deer",
            "bankAccountNumber":"1000000000000001",
            "paymentTypeId": 7022
        }
}
```

#### APM Payout request example for certain methods. (2)

```json
{
	"amount": 10002.00,
	"currency": "THB",
	"invoiceId": "16",
 	"name": "John Deer",
   	"successUrl": "https://example.com/success",
 	"failureUrl": "https://example.com/failure",
 	"pendingUrl": "https://example.com/pending",
 	"cancelUrl": "https://example.com/cancel",
	"data": {
            "bankAccountNumber": "0000012345864",
            "ifsc": "IFSC",
            "paymentTypeId": 7088
        }
}
```

#### APM Payout request example for UPI (3020)

```json
{
	"amount": 700,
	"accountId": "john@deer.com",
        "currency": "INR",
	"description": "Payment for products",
	"invoiceId": "08072021-01",
        "name": "John Deer",
        "data": {
              "personId": "9555777666@upi",
              "phone": "9555777666",
              "address": "Avishkar Ram Maruti Naupada 66 2",
              "paymentTypeId": 3020
          }
}
```

#### APM Payout request example to India bank account (3021)

```json
{
	"amount": 500,
	"accountId": "john@deer.com",
        "currency": "INR",
	"description": "Payment for products",
	"invoiceId": "08072021-01",
        "name": "John Deer",
        "data": {
              "personId": "24250100008333",
              "phone": "9555777666",
              "address": "Avishkar Ram Maruti Naupada 66 2",
              "paymentTypeId": 3021,
              "ifsc": "ABCD1234567"
          }
}
```

## Notifications

Notification is an HTTP request from the system to your site. Similar requests are also called **callback** or **webhook**. The system provides notifications about successful and unsuccessful payments.

{% hint style="info" %}
Enabling and disabling notifications as well as setting addresses and notification formats is configured in Back Office.
{% endhint %}

### Payment Success

The Success notification is performed once a payment is successfully completed. It serves the purpose of information about a payment: the system sends a request to a merchant's website address with payment information, and the merchant's site has to register the fact of payment.

| Parameter         | Type    | Usage    | Description                                                                                    |
| ----------------- | ------- | -------- | ---------------------------------------------------------------------------------------------- |
| transactionId     | Integer | Required | Transaction number in the system                                                               |
| amount            | Number  | Required | Actual amount                                                                                  |
| currency          | String  | Required | Currency                                                                                       |
| dateTime          | String  | Required | Date and time                                                                                  |
| invoiceId         | String  | Optional | Invoice or order number                                                                        |
| accountId         | String  | Optional | Payer's identifier                                                                             |
| operationTypeCode | Integer | Required | Transaction operation code                                                                     |
| operationType     | String  | Required | Transaction operation ("Payment")                                                              |
| status            | String  | Required | Transaction status ("Completed")                                                               |
| statusCode        | Integer | Required | Transaction status code                                                                        |
| cardFirstSix      | String  | Required | Transaction Card PAN first 6 numbers                                                           |
| cardLastFour      | String  | Required | Transaction Card PAN last 4 numbers                                                            |
| cardType          | String  | Required | Card type (VISA, Mastercard, Amex)                                                             |
| cardExpDate       | String  | Required | Card expiry date in MM/YYYY format                                                             |
| name              | String  | Optional | Cardholder's name                                                                              |
| token             | String  | Optional | <p>Payment card's token. Returned only if accountId </p><p>was provided during the payment</p> |
| initialAmount     | Number  | Optional | Initial amount                                                                                 |
| bankArn           | String  | Optional | Bank ARN                                                                                       |

### Payment Failure

In the event of a payment failure, the merchant is able to receive a notification with transaction details and failure explanation.

| Parameter         | Type    | Usage    | Description                          |
| ----------------- | ------- | -------- | ------------------------------------ |
| transactionId     | Integer | Required | Transaction number in the system     |
| amount            | Number  | Required | Amount                               |
| currency          | String  | Required | Currency                             |
| dateTime          | String  | Required | Date and time                        |
| invoiceId         | String  | Optional | Invoice or order number              |
| accountId         | String  | Optional | Payer's identifier                   |
| operationTypeCode | Integer | Required | Transaction operation code           |
| operationType     | String  | Required | Transaction operation ("Payment")    |
| status            | String  | Required | Transaction status ("Declined")      |
| statusCode        | Integer | Required | Transaction status code              |
| cardFirstSix      | String  | Required | Transaction Card PAN first 6 numbers |
| cardLastFour      | String  | Required | Transaction Card PAN last 4 numbers  |
| cardType          | String  | Required | Card type (VISA, Mastercard, Amex)   |
| cardExpDate       | String  | Required | Card expiry date in MM/YYYY format   |
| name              | String  | Optional | Cardholder's name                    |
| reason            | String  | Required | Transaction failure reason           |
| reasonCode        | Integer | Required | Transaction failure reason code      |

### Refund Success

The Refund Success notification is performed if a payment was refunded (fully or partially) on your initiative via the API or Back Office.

| Parameter            | Type    | Usage    | Description                                             |
| -------------------- | ------- | -------- | ------------------------------------------------------- |
| paymentTransactionId | Integer | Required | Transaction number of the initial payment in the system |
| transactionId        | Integer | Required | Refund transaction number in the system                 |
| amount               | Number  | Required | Refund amount                                           |
| currency             | String  | Required | Currency                                                |
| dateTime             | String  | Required | Date and time                                           |
| invoiceId            | String  | Optional | Invoice or order number                                 |
| accountId            | String  | Optional | Payer's identifier                                      |
| operationTypeCode    | Integer | Required | Transaction operation code                              |
| operationType        | String  | Required | Transaction operation ("Refund")                        |
| status               | String  | Required | Transaction status ("RefundCompleted")                  |
| statusCode           | Integer | Required | Transaction status code                                 |

### Refund Failure

The Refund Failure notification is performed if a payment refund request (full or partial) has failed.

| Parameter            | Type    | Usage    | Description                                             |
| -------------------- | ------- | -------- | ------------------------------------------------------- |
| paymentTransactionId | Integer | Required | Transaction number of the initial payment in the system |
| transactionId        | Integer | Required | Refund transaction number in the system                 |
| amount               | Number  | Required | Refund amount                                           |
| currency             | String  | Required | Currency                                                |
| dateTime             | String  | Required | Date and time                                           |
| invoiceId            | String  | Optional | Invoice or order number                                 |
| accountId            | String  | Optional | Payer's identifier                                      |
| operationTypeCode    | Integer | Required | Transaction Operation Code                              |
| operationType        | String  | Required | Transaction operation ("Refund")                        |
| status               | String  | Required | Transaction status ("Declined")                         |
| statusCode           | Integer | Required | Transaction status code                                 |
| reason               | String  | Required | Transaction failure reason                              |
| reasonCode           | Integer | Required | Transaction failure reason code                         |

### Payout Success

The Payout Success notification is performed if funds were paid out on your initiative via the API or Back Office.

| Parameter         | Type    | Usage    | Description                             |
| ----------------- | ------- | -------- | --------------------------------------- |
| transactionId     | Integer | Required | Payout transaction number in the system |
| amount            | Number  | Required | Payout amount                           |
| currency          | String  | Required | Currency                                |
| accountId         | String  | Required | Payer's identifier                      |
| invoiceId         | String  | Optional | Invoice or order number                 |
| dateTime          | String  | Required | Date and time                           |
| operationTypeCode | Integer | Required | Transaction operation code              |
| operationType     | String  | Required | Transaction operation ("CardPayout")    |
| status            | String  | Required | Transaction status ("PayoutCompleted")  |
| statusCode        | Integer | Required | Transaction status code                 |

### Payout Failure

The Payout Failure notification is performed if funds payout request has failed.

| Parameter         | Type    | Usage    | Description                             |
| ----------------- | ------- | -------- | --------------------------------------- |
| transactionId     | Integer | Required | Payout transaction number in the system |
| amount            | Number  | Required | Payout amount                           |
| currency          | String  | Required | Currency                                |
| accountId         | String  | Required | Payer's identifier                      |
| invoiceId         | String  | Optional | Invoice or order number                 |
| dateTime          | String  | Required | Date and time                           |
| operationTypeCode | Integer | Required | Transaction operation code              |
| operationType     | String  | Required | Transaction operation ("CardPayout")    |
| status            | String  | Required | Transaction status ("Declined")         |
| statusCode        | Integer | Required | Transaction status code                 |
| reason            | String  | Required | Transaction failure reason              |
| reasonCode        | Integer | Required | Transaction failure reason code         |

### Payment Check

The Payment Check notification is performed once a cardholder filled in a payment form and pressed the “Pay” button. It serves the purpose of payment validation: the system sends a request to a merchant's website address with payment information, and the website must validate and reply back if the payment has to be confirmed or rejected.

| Parameter         | Type    | Usage    | Description                              |
| ----------------- | ------- | -------- | ---------------------------------------- |
| transactionId     | Integer | Required | Payment transaction number in the system |
| amount            | Number  | Required | Payment amount                           |
| currency          | String  | Required | Payment currency                         |
| dateTime          | String  | Required | Date and time                            |
| invoiceId         | String  | Required | Invoice or order number                  |
| accountId         | String  | Required | Payer's identifier                       |
| name              | String  | Required | Cardholder's name                        |
| operationTypeCode | Integer | Required | Transaction operation code               |
| operationType     | String  | Required | Transaction operation ("Payment")        |
| cardFirstSix      | String  | Required | Transaction Card PAN first 6 numbers     |
| cardLastFour      | String  | Required | Transaction Card PAN last 4 numbers      |
| cardType          | String  | Required | Card type (VISA, Mastercard, Amex)       |
| cardExpDate       | String  | Required | Card expiry date in MM/YYYY format       |
| status            | String  | Required | Transaction status ("Created")           |
| statusCode        | Integer | Required | Transaction status code                  |

Payment Check notifications expects **HTTP status** **200** with response in JSON format with the required parameter **code**:

```javascript
{"code":0}
```

#### Response codes

Payment Check notification expects the code value **"0"** in order to proceed with the payment. Any other numeric value received with the response will reject the payment processing.

### Notification confirmation

{% hint style="success" %}
The system expects the 200 HTTP response in JSON format with the required parameter **code** equal to **0**
{% endhint %}

| Parameter | Type    | Description                    |
| --------- | ------- | ------------------------------ |
| code      | Integer | Notification confirmation code |

**Notification confirmation example**

```javascript
{"code":0}
```

In case the System didn't receive the mentioned success code, notification sending will be repeated 5 times.

### Handling amount mismatches

In case the paid amount differs from the original order amount, the `amount` field in the callback may contain either the original amount or the actual paid amount. This is an intended feature.

If the merchant cannot accept payments for amounts different from the original, such cases should be handled manually by support.

There are two possible approaches:

* Send the actual paid amount in the callback.
* Do not approve the transaction. In this case, the user must create a new order with the correct amount and submit it for approval.

### Notification validation

All the notifications have the **Content-HMAC** HTTP header which contains a validation value of a request which is calculated using the [**HMAC**](https://en.wikipedia.org/wiki/HMAC) algorithm. If you need to verify authenticity and integrity of notifications, you can calculate a validation value on your side and compare it with the request value. The coincidence confirms that you received the notification we sent in the original form.

* For notifications sent by POST method the message is represented by a request body.&#x20;
* Hash is calculated by SHA256 function;&#x20;
* The secret API is used as a key, which can be obtained in your Back Office;&#x20;
* The calculated value is passed in base64 encoding.

#### HMAC value calculation and encoding example

```php
<?php
    $data = '{"transactionId":512,"amount":30.45,"currency":"EUR"}';
    $secret = '1234ABCD';
    $hmac_data = hash_hmac('sha256', $data, $secret);
    $hmac_content = base64_encode($hmac_data);
    echo $hmac_content;
?>
```

Output result:

```
MzVkMzBlMTdmMmVkNGJkNjFhMzFmNTdhODU0ZGQwZTYwZGU5MDg5MDRiODYyMTAzZmI0ZDAzMjRiMWJmNmM3Mw==
```

The system sends notifications from the following addresses **34.88.67.143**, **34.141.75.73.**

## Testing

Once you have an access to Back Office, it is in a test mode already which means that payments and other operations will take place in emulation mode. After you create a site in Back Office, it is automatically assigned a test mode.

### Cards for Payment Operation tests

| Card             | Expiry | CVV     | 3-D Secure | Schema   | Result  |
| ---------------- | ------ | ------- | ---------- | -------- | ------- |
| 4111111111111111 | 12/24  | **123** | Yes        | Advanced | Success |
| 4111111111111111 | 12/24  | **333** | Yes        | Advanced | Failure |
| 4200000000000000 | 12/24  | **123** | Yes        | Redirect | Success |
| 4200000000000000 | 12/24  | **333** | Yes        | Redirect | Failure |
| 4242424242424242 | 12/24  | **123** | No         | None     | Success |
| 4242424242424242 | 12/24  | **333** | No         | None     | Failure |

{% hint style="info" %}
Type in "4" as the 3-D Secure passphrase&#x20;
{% endhint %}

### Cards for Refund Operation tests

| Card             | Result          | Description                                                                                                    |
| ---------------- | --------------- | -------------------------------------------------------------------------------------------------------------- |
| 4242424242424242 | RefundCompleted | Successful refund (full or partial)                                                                            |
| 4111111111111111 | Declined        | All refund requests to this card will be declined by the system                                                |
| 4200000000000000 | Created         | Refund request will be created, but not processed further until the result is received from the acquiring bank |

### Cards for Card Payout Operation tests

| Card             | Result          | Description                                                                                                    |
| ---------------- | --------------- | -------------------------------------------------------------------------------------------------------------- |
| 4242424242424242 | PayoutCompleted | Successful payout to a card                                                                                    |
| 4111111111111111 | Declined        | All payout requests to this card will be declined by the system                                                |
| 4200000000000000 | Created         | Payout request will be created, but not processed further until the result is received from the acquiring bank |

## Dictionaries

### Transaction Status

| ID | Status                 | Description                               |
| -- | ---------------------- | ----------------------------------------- |
| 1  | AwaitingAuthentication | Waiting for 3-D Secure authentication     |
| 4  | Completed              | Payment transaction successful completion |
| 5  | RefundCompleted        | Refund transaction successful completion  |
| 7  | PayoutCompleted        | Payout transaction successful completion  |
| 10 | Created                | Transaction has been created              |
| 99 | Declined               | Transaction processing failure            |

### Transaction Operations

| ID | Operation  | Description                                                                                 |
| -- | ---------- | ------------------------------------------------------------------------------------------- |
| 1  | Payment    | Transaction operation when funds are charged from the credit card                           |
| 2  | Refund     | Operation when funds are returned back to a credit card after the initial Payment operation |
| 3  | CardPayout | Operation when the funds are paid out to a credit card                                      |

### Timezones

| Timezone             | Description |
| -------------------- | ----------- |
| Pacific/Samoa        | GMT-11:00   |
| US/Hawaii            | GMT-10:00   |
| US/Alaska            | GMT-09:00   |
| America/Los\_Angeles | GMT-08:00   |
| US/Arizona           | GMT-07:00   |
| America/Mexico\_City | GMT-06:00   |
| US/East-Indiana      | GMT-05:00   |
| Atlantic/Bermuda     | GMT-04:00   |
| America/Santiago     | GMT-03:00   |
| America/Noronha      | GMT-02:00   |
| Atlantic/Azores      | GMT-01:00   |
| Europe/London        | GMT+00:00   |
| Europe/Paris         | GMT+01:00   |
| Europe/Riga          | GMT+02:00   |
| Europe/Moscow        | GMT+03:00   |
| Asia/Tbilisi         | GMT+04:00   |
| Asia/Yekaterinburg   | GMT+05:00   |
| Asia/Omsk            | GMT+06:00   |
| Asia/Tomsk           | GMT+07:00   |
| Singapore            | GMT+08:00   |
| Asia/Chita           | GMT+09:00   |
| Asia/Vladivostok     | GMT+10:00   |
| Australia/Sydney     | GMT+11:00   |
