# OdeonPay API

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

* System — OdeonPay payment gateway.
* Merchant — OdeonPay client who works with the System.
* API — application program interface for interacting with the system
* Back Office — merchant's back office in the system
* 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.&#x20;
* 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.hostname]/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 | Optional | Payer's identifier. If specified, the payment token will be returned in the [Notification](#notifications) 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](#notifications). |
| 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.hostname]/assets/js/payment.js"></script>
```

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

```javascript
var odeonPay = new OdeonPay();

		pay = function () {
			odeonPay.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 odeonPay;
		};
```

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  | Optional | 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.hostname] 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.hostname]/test`&#x20;

The method to test the interaction with the API.

#### Headers

| Name          | Type   | Description               |
| ------------- | ------ | ------------------------- |
| Authorization | string | HTTP Basic authentication |
| Content-Type  | 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.hostname]/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\* | string | HTTP Basic authentication |
| Content-Type\*  | string | application/json          |

#### Request Body

| Name               | Type   | Description                                                                                                                                                                       |
| ------------------ | ------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| publicId\*         | string | Merchant identifier. Located in the Back Office                                                                                                                                   |
| amount\*           | number | Payment amount                                                                                                                                                                    |
| currency\*         | string | Payment currency                                                                                                                                                                  |
| name\*             | string | Cardholder's name                                                                                                                                                                 |
| description\*      | string | Description                                                                                                                                                                       |
| card\*             | object | Card data of a payment. See the example below for the card data object structure.                                                                                                 |
| invoiceId          | string | Order or invoice number                                                                                                                                                           |
| accountId\*        | string | Payer's e-mail address. If specified, the payment token will be returned which can be used for Payouts                                                                            |
| ip\*               | string | Payer's IP 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 to 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. |

{% 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",
	"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.hostname]/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](#payment) 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](#post-3-d-secure) 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.hostname]/payments/post3ds` &#x20;

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

#### Headers

| Name            | Type   | Description               |
| --------------- | ------ | ------------------------- |
| Authorization\* | string | HTTP Basic authentication |
| Content-Type\*  | string | application/json          |

#### Request Body

| Name            | Type    | Description          |
| --------------- | ------- | -------------------- |
| transactionId\* | integer | MD parameter value   |
| paRes\*         | string  | Received PaRes value |

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

```
{
    "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.hostname]/payments/refund`  &#x20;

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

#### Headers

| Name            | Type   | Description               |
| --------------- | ------ | ------------------------- |
| Authorization\* | string | HTTP Basic authentication |
| Content-Type\*  | string | application/json          |

#### Request Body

| Name            | Type    | Description                                                                                                                                                        |
| --------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| transactionId\* | 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.hostname]/payments/payout` &#x20;

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

#### Headers

| Name            | Type   | Description               |
| --------------- | ------ | ------------------------- |
| Authorization\* | string | HTTP Basic authentication |
| Content-Type\*  | string | application/json          |

#### Request Body

| Name        | Type   | Description                                                                                                |
| ----------- | ------ | ---------------------------------------------------------------------------------------------------------- |
| token\*     | string | Token of the card. The token is received in response message after the successful Payment API method call. |
| amount\*    | number | Payout amount                                                                                              |
| accountId\* | string | Payer's e-mail address.                                                                                    |
| currency\*  | 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.hostname]/payments/payout/card` &#x20;

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

#### Headers

| Name            | Type   | Description               |
| --------------- | ------ | ------------------------- |
| Authorization\* | string | HTTP Basic authentication |
| Content-Type\*  | string | application/json          |

#### Request Body

| Name       | Type   | Description                      |
| ---------- | ------ | -------------------------------- |
| pan\*      | string | Card number                      |
| name\*     | string | Cardholder name                  |
| amount\*   | number | Payout amount                    |
| currency\* | string | Payout currency                  |
| invoiceId  | string | Order or invoice number          |
| data       | string | 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.hostname]/payments/status`&#x20;

Returns the current status of the requested transaction.

#### Headers

| Name            | Type   | Description               |
| --------------- | ------ | ------------------------- |
| Authorization\* | string | HTTP Basic authentication |
| Content-Type\*  | string | application/json          |

#### Request Body

| Name            | Type   | Description                           |
| --------------- | ------ | ------------------------------------- |
| transactionId\* | 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
}
```

## Status Invoice

<mark style="color:green;">`POST`</mark> `https://[api.hostname]/payments/status/invoice`&#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                                   |
| ------------------------------------------- | ------ | --------------------------------------------- |
| invoiceId<mark style="color:red;">\*</mark> | string | Transaction Invoice ID to check the status of |

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

```javascript
{
    "success": true,
    "message": null,
    "transactions": [
        {
            "transactionId": 501166,
            "amount": 2.54,
            "currency": "EUR",
            "invoiceId": "1781",
            "accountId": "john@deer.com",
            "name": "John Deer",
            "statusCode": 4,
            "status": "Completed",
            "reasonCode": 0,
            "reason": "Approved",
            "operationTypeCode": 1,
            "operationType": "Payment"
        },
        {
            "transactionId": 501167,
            "amount": 2.54,
            "currency": "EUR",
            "invoiceId": "1781",
            "accountId": "john@deer.com",
            "name": "John Deer",
            "statusCode": 99,
            "status": "Declined",
            "reasonCode": 6002,
            "reason": "Duplicate invoice ID",
            "operationTypeCode": 1,
            "operationType": "Payment"
        }
    ]
}
```

{% endtab %}
{% endtabs %}

#### Request example

```javascript
{
    "invoiceId": "1781"
}
```

## Checkout

<mark style="color:green;">`POST`</mark> `https://[api.hostname]/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\* | string | HTTP Basic authentication |
| Content-Type\*  | 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.hostname]/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.hostname]/payments/list`&#x20;

Returns the lists of all transactions for a day.

#### Headers

| Name            | Type   | Description               |
| --------------- | ------ | ------------------------- |
| Authorization\* | string | HTTP Basic authentication |
| Content-Type\*  | string | application/json          |

#### Request Body

| Name     | Type   | Description                                                                                                                                             |
| -------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
| date\*   | 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 " %}

```javascript
{
    "success": true,
    "message": null,
    "transactions": [
        {
            "id": 16213,
            "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",
            "cardType": "Visa",
            "cardFirstSix": "411111",
            "cardLastFour": "1111",
            "completed": 1606726905000,
            "paymentTransactionId": null
        }
    ]
}
```

{% endtab %}
{% endtabs %}

#### Request example

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

## Link

<mark style="color:green;">`POST`</mark> `https://[api.hostname]/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 or the merchant can use returned parameters to render their own payment form (Host-2-Host integration).

#### Headers

| Name            | Type   | Description               |
| --------------- | ------ | ------------------------- |
| Authorization\* | string | HTTP Basic authentication |
| Content-Type\*  | string | application/json          |

#### Request Body

| Name          | Type   | Description                                                                                                       |
| ------------- | ------ | ----------------------------------------------------------------------------------------------------------------- |
| amount\*      | number | Payment amount                                                                                                    |
| currency\*    | string | Payment currency                                                                                                  |
| description\* | string | Payment description in text format                                                                                |
| invoiceId     | string | Order or invoice number                                                                                           |
| accountId\*   | string | Payer's identifier                                                                                                |
| successUrl    | string | The URL address the user gets redirected after  successful payment operation                                      |
| failureUrl    | string | The URL address the user gets redirected after the payment transaction has failed                                 |
| pendingUrl    | string | The URL address the user gets redirected when the payment processing is pending                                   |
| cancelUrl     | 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\*          | 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. |

#### Successful Response (200)

The API returns a `link` object that can be used in two ways:

1. **Redirect** — use the provided `action` URL to redirect the user to hosted payment page.
2. **H2H Integration** — use parameters returned in `link.params` to render your own payment interface.

### Standard Redirect Example

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

```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.hostname]/?f8927-3928f-2398-3939"
    }
}
```

{% endtab %}
{% endtabs %}

### H2H Integration Examples

In some cases, instead of a single redirect URL, the `link.params` field may contain specific values allowing the merchant to render their own payment UI.

1\. **QR Code Payment**

If a QR code is available for payment (e.g. for QRIS or similar), it is returned in the `qr` parameter.

```json
"link": {
  "method": "GET",
  "action": "https://[api.hostname]/payments/redirect-content/...",
  "params": {
    "qr": "00020101021226670016COM.NOBUBANK.WWW01..."
  }
}

```

**Usage:** Render the QR code string into an image using a QR code generator on your side.

2\. **UPI Intent Link (India)**

For UPI payments (e.g. `paymentTypeId = 2000`), an `intent` URI may be returned.

```json
"link": {
  "method": "GET",
  "action": "https://[api.hostname]/payments/redirect-content/...",
  "params": {
    "intent": "upi://pay?pa=9258493441m@pnb&pn=9258493441m@pnb&cu=INR"
  }
}

```

**Usage:** Open the UPI intent link in the mobile app or browser that supports UPI.

3\. **Bank Transfer Details**

If the payment requires a manual bank transfer, the following banking details will be returned:

```json
"link": {
  "method": "GET",
  "action": "https://[api.hostname]/payments/redirect-content/...",
  "params": {
    "bankName": "Bank",
    "bankAccountHolder": "John Doe",
    "bankAccountNumber": "1234567890"
  }
}

```

**Usage:** Show these fields in your interface to instruct the customer to transfer the funds manually.

#### Important Notes:

* In all cases, the `link.action` field is still provided. Merchants who prefer not to build their own UI can always redirect the user to this URL for a ready-to-use hosted payment page.
* If `link.params` is present, you are free to use these values for a customised user experience.

#### 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": 1000
         }
}
```

## Balance

<mark style="color:blue;">`GET`</mark> `https://[api.hostname]/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               |
| --------------- | ------ | ------------------------- |
| Authorization\* | string | HTTP Basic authentication |
| Content-Type\*  | string | application/json          |

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

```javascript
{
    "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 fields description

| Parameter  | Type   | Description                                      |
| ---------- | ------ | ------------------------------------------------ |
| currency   | 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 Payment 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 data-header-hidden><thead><tr><th>Method</th><th width="116">Type ID</th><th>Method</th><th width="135">Country</th><th width="167">Request example</th></tr></thead><tbody><tr><td>Method</td><td>Type ID</td><td>Method</td><td>Country</td><td>Request example</td></tr><tr><td>APM Test Payment</td><td>1</td><td>Link</td><td></td><td></td></tr><tr><td>APM Test Payout</td><td>2</td><td>APM Payout</td><td></td><td></td></tr><tr><td>YooMoney (Yandex Money)</td><td>201</td><td>Link</td><td>Russia</td><td></td></tr><tr><td>WebMoney</td><td>501</td><td>Link</td><td>Russia</td><td></td></tr><tr><td>Banco Itau</td><td>1000</td><td>Link</td><td>Brazil</td><td></td></tr><tr><td>Santander Brasil</td><td>1001</td><td>Link</td><td>Brazil</td><td></td></tr><tr><td>Banco do Brasil</td><td>1002</td><td>Link</td><td>Brazil</td><td></td></tr><tr><td>Banrisul</td><td>1003</td><td>Link</td><td>Brazil</td><td></td></tr><tr><td>Bradesco Pague Facil</td><td>1004</td><td>Link</td><td>Brazil</td><td></td></tr><tr><td>Bradesco Pague Facil</td><td>1005</td><td>Link</td><td>Brazil</td><td></td></tr><tr><td>Caixa Econômica Federal</td><td>1006</td><td>Link</td><td>Brazil</td><td></td></tr><tr><td>Banco Itau Boleto</td><td>1007</td><td>Link</td><td>Brazil</td><td></td></tr><tr><td>UPI</td><td>2000</td><td>Link</td><td>India</td><td></td></tr><tr><td>Google Pay</td><td>2001</td><td>Link</td><td>India</td><td></td></tr><tr><td>JioMoney</td><td>2002</td><td>Link</td><td>India</td><td></td></tr><tr><td>Airtel Money Wallet</td><td>2003</td><td>Link</td><td>India</td><td></td></tr><tr><td>Reliance Jio Wallet</td><td>2004</td><td>Link</td><td>India</td><td></td></tr><tr><td>Freecharge Wallet</td><td>2005</td><td>Link</td><td>India</td><td></td></tr><tr><td>Phonepe Wallet</td><td>2006</td><td>Link</td><td>India</td><td></td></tr><tr><td>Amazon Wallet</td><td>2007</td><td>Link</td><td>India</td><td></td></tr><tr><td>Ola Money Wallet</td><td>2008</td><td>Link</td><td>India</td><td></td></tr><tr><td>Mobikwik Wallet</td><td>2009</td><td>Link</td><td>India</td><td></td></tr><tr><td>Bank Of Maharashtra</td><td>2010</td><td>Link</td><td>India</td><td></td></tr><tr><td>Central Bank Of India</td><td>2011</td><td>Link</td><td>India</td><td></td></tr><tr><td>Hdfc Bank</td><td>2012</td><td>Link</td><td>India</td><td></td></tr><tr><td>Canara Bank</td><td>2013</td><td>Link</td><td>India</td><td></td></tr><tr><td>Bank Of India</td><td>2014</td><td>Link</td><td>India</td><td></td></tr><tr><td>City Union Bank</td><td>2015</td><td>Link</td><td>India</td><td></td></tr><tr><td>Federal Bank</td><td>2016</td><td>Link</td><td>India</td><td></td></tr><tr><td>Icici Bank</td><td>2017</td><td>Link</td><td>India</td><td></td></tr><tr><td>Indian Bank</td><td>2018</td><td>Link</td><td>India</td><td></td></tr><tr><td>Indian Overseas Bank</td><td>2019</td><td>Link</td><td>India</td><td></td></tr><tr><td>Industrial Development Bank Of India</td><td>2020</td><td>Link</td><td>India</td><td></td></tr><tr><td>Indusind Bank</td><td>2021</td><td>Link</td><td>India</td><td></td></tr><tr><td>Jammu And Kashmir Bank</td><td>2022</td><td>Link</td><td>India</td><td></td></tr><tr><td>Karnataka Bank Ltd</td><td>2023</td><td>Link</td><td>India</td><td></td></tr><tr><td>Karur Vysya Bank</td><td>2024</td><td>Link</td><td>India</td><td></td></tr><tr><td>State Bank Of India</td><td>2025</td><td>Link</td><td>India</td><td></td></tr><tr><td>South Indian Bank</td><td>2026</td><td>Link</td><td>India</td><td></td></tr><tr><td>Kotak Bank</td><td>2027</td><td>Link</td><td>India</td><td></td></tr><tr><td>Union Bank Of India</td><td>2028</td><td>Link</td><td>India</td><td></td></tr><tr><td>Bank Of Baroda Retail Accounts</td><td>2029</td><td>Link</td><td>India</td><td></td></tr><tr><td>Yes Bank</td><td>2030</td><td>Link</td><td>India</td><td></td></tr><tr><td>Andhra Bank</td><td>2031</td><td>Link</td><td>India</td><td></td></tr><tr><td>Uco Bank</td><td>2032</td><td>Link</td><td>India</td><td></td></tr><tr><td>Catholic Syrian Bank</td><td>2033</td><td>Link</td><td>India</td><td></td></tr><tr><td>Allahabad Bank</td><td>2034</td><td>Link</td><td>India</td><td></td></tr><tr><td>Dhanalaxmi Bank Corporate</td><td>2035</td><td>Link</td><td>India</td><td></td></tr><tr><td>Laxmi Vilas Bank - Corporate Net Banking</td><td>2036</td><td>Link</td><td>India</td><td></td></tr><tr><td>Punjab National Bank</td><td>2037</td><td>Link</td><td>India</td><td></td></tr><tr><td>Standard Chartered Bank</td><td>2038</td><td>Link</td><td>India</td><td></td></tr><tr><td>Punjab And Sind Bank</td><td>2039</td><td>Link</td><td>India</td><td></td></tr><tr><td>Saraswat Cooperative Bank</td><td>2040</td><td>Link</td><td>India</td><td></td></tr><tr><td>VISA/MC/RuPay</td><td>2041</td><td>Link</td><td>Worldwide</td><td></td></tr><tr><td>Paytm, IN, Online</td><td>2042</td><td>Link</td><td>India</td><td></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><a 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 Bank Selection</td><td>2060</td><td>Link</td><td>India</td><td></td></tr><tr><td>UPI QR</td><td>2080</td><td>Link</td><td>India</td><td></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></td></tr><tr><td>Bank Transfer Payouts</td><td>3021</td><td>APM Payout</td><td>India</td><td></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>Vietnam QR</td><td>22011</td><td>Link</td><td>Vietnam</td><td><h4>Link request example for certain methods. (1)</h4></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</td><td>Thailand</td><td><a href="#link-request-example-for-thai-qr-payment-thailand-7071">Link request example for Thai QR Payment, Thailand (7071)</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="#undefined">#undefined</a></td></tr><tr><td>TMBThanachart Bank</td><td>7089</td><td>APM Payout</td><td>Thailand</td><td><a data-mention href="#undefined">#undefined</a></td></tr><tr><td>Bank Central Asia</td><td>7024</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Negara Indonesia</td><td>7025</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Mandiri</td><td>7026</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Indonesia</td><td>7027</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Artha Graha (Support VA Wallet Only)</td><td>7028</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Bukopin (Support VA Wallet Only)</td><td>7029</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Commonwealth (Support VA Wallet Only)</td><td>7030</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Danamon (Support VA Wallet Only)</td><td>7031</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Mega (Support VA Wallet Only)</td><td>7032</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Maspion (Support VA Wallet Only)</td><td>7033</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Mestika (Support VA Wallet Only)</td><td>7034</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Panin (Support VA Wallet Only)</td><td>7035</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Sumut (Support VA Wallet Only)</td><td>7036</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Sinar Mas (Support VA Wallet Only)</td><td>7037</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Btpn (Support VA Wallet Only)</td><td>7038</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Niaga (Support VA Wallet Only)</td><td>7039</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Indonesia (Support VA Wallet Only)</td><td>7040</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 /bii (Support VA Wallet Only)</td><td>7041</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Indonesia (Support VA Wallet Only)</td><td>7042</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Permata (Support VA Wallet Only)</td><td>7043</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Indonesia (Support VA Wallet Only)</td><td>7044</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Negara Indonesia (VA)</td><td>7074</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Mandiri (VA)</td><td>7075</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Indonesia (VA)</td><td>7076</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Indonesia (VA)</td><td>7077</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Sahabat Sampoerna (VA)</td><td>7078</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Sinarmas (VA)</td><td>7079</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Niaga (VA)</td><td>7080</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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 Permata (VA)</td><td>7081</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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>7082</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a 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>7083</td><td>Link / APM Payout</td><td>Indonesia</td><td><a data-mention href="#link-request-example-for-certain-methods.-1">#link-request-example-for-certain-methods.-1</a><a data-mention href="#apm-payout-request-example-for-certain-methods.-1">#apm-payout-request-example-for-certain-methods.-1</a></td></tr><tr><td>Boleto</td><td>4011</td><td>Link</td><td>Brazil</td><td></td></tr><tr><td>Direct PIX</td><td>4012</td><td>Link</td><td>Brazil</td><td></td></tr><tr><td>Boleto Flash Itau</td><td>4013</td><td>Link</td><td>Brazil</td><td></td></tr><tr><td>SEPA Credit Transfer</td><td>6000</td><td>APM Payout</td><td>EU</td><td></td></tr><tr><td>SEPA Transfer</td><td>6001</td><td>Link</td><td>EU</td><td></td></tr><tr><td>BTC, Bitcoin</td><td>10100</td><td>Link</td><td>Worldwide</td><td><a href="#link-request-example-for-btc-10100">Link request example for BTC (10100)</a></td></tr><tr><td>Virtual Banking</td><td>50033</td><td>Link / APM Payout</td><td>South Korea</td><td><a href="#link-request-example-for-virtual-banking-south-korea-50033">Link request example for Virtual Banking, South Korea (50033)</a><a href="#apm-payout-for-virtual-banking-south-korea-50033">APM Payout for Virtual Banking, South Korea (50033)</a></td></tr><tr><td>EasyPaisa</td><td>56500</td><td>Link / APM Payout</td><td>Pakistan</td><td><a href="#link-request-example-for-easypaisa-56500">Link request example for EasyPaisa (56500)</a> <a href="#apm-payout-request-example-for-easypaisa-56500">APM Payout request example for EasyPaisa (56500)</a></td></tr><tr><td>JazzCash</td><td>56501</td><td>Link / APM Payout</td><td>Pakistan</td><td><a href="#link-request-example-for-jazzcash-56501">Link request example for JazzCash (56501) </a><a href="#apm-payout-request-example-for-jazzcash-56501">APM payout request example for JazzCash (56501)</a></td></tr><tr><td>Bank Transfer</td><td>16401</td><td>Link</td><td>Nigeria</td><td><a href="#link-request-example-for-bank-transfer-nigeria-16401">Link request example for Bank Transfer, Nigeria (16401)</a></td></tr><tr><td>AL-Barakah Microfinance Bank</td><td>16100</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>9 Payment Service Bank</td><td>16101</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>AB Microfinance Bank</td><td>16102</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Abbey Mortgage Bank</td><td>16103</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Above Only Microfinance Bank</td><td>16104</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>ABU Microfinance Bank</td><td>16105</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Access Bank Nigeria</td><td>16106</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Access Bank Plc (Diamond)</td><td>16107</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>ACCESS MOBILE</td><td>16108</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Access Money</td><td>16109</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Access Yello &#x26; Beta</td><td>16110</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Accion Microfinance Bank</td><td>16111</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Addosser Microfinance Bank</td><td>16112</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Adeyemi College Staff Microfinance Bank</td><td>16113</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>AG Mortgage Bank</td><td>16114</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Al-Hayat Microfinance Bank</td><td>16115</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Alekun Microfinance Bank</td><td>16116</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Alert MFB</td><td>16117</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Allworkers Microfinance Bank</td><td>16118</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Alpha Kapital Microfinance Bank</td><td>16119</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>AMJU Unique Microfinance Bank</td><td>16120</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>AMML Micro-finance Bank</td><td>16121</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Apeks Microfinance Bank</td><td>16122</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Arise MFB MFB</td><td>16123</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Aso Savings and Loans</td><td>16124</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Astrapolaris Microfinance Bank</td><td>16125</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Auchi Microfinance Bank</td><td>16126</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Baines Credit Microfinance Bank</td><td>16127</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Balogun Gambari MFB</td><td>16128</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Bayero MICROFINANCE BANK</td><td>16129</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>BC Kash Microfinance Bank</td><td>16130</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>BIPC MICROFINANCE BANK</td><td>16131</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>BOCTrust Micro-finance Bank</td><td>16132</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Bosak Microfinance Bank</td><td>16133</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Bowen Microfinance Bank</td><td>16134</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Brent Mortgage Bank</td><td>16135</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>BRETHREN MICROFINANCE BANK</td><td>16136</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>BRIDGEWAY MICROFINANCE BANK</td><td>16137</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Brightway MFB</td><td>16138</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Cellulant</td><td>16139</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>CEMCS Microfinance Bank</td><td>16140</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Chams Mobile</td><td>16141</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Chikum Microfinance Bank</td><td>16142</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>CIT Microfinance Bank</td><td>16143</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Citi Bank</td><td>16144</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Consumer Microfinance Bank</td><td>16145</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Contec Global Infotech Limited (NowNow)</td><td>16146</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Coronation Merchant Bank</td><td>16147</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Covenant Micro-finance Bank</td><td>16148</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Credit Afrique Microfinance Bank</td><td>16149</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Daylight Microfinance Bank</td><td>16150</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>e-Barcs Microfinance Bank</td><td>16151</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Eagle Flight MFB</td><td>16152</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Eartholeum</td><td>16153</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Ecobank</td><td>16154</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>EcoBank Express Account</td><td>16155</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Ecobank Mobile</td><td>16156</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Edfin MFB</td><td>16157</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Ekondo MFB</td><td>16158</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Emeralds Microfinance Bank</td><td>16159</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Empire Trust Micro-finance Bank</td><td>16160</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Enterprise Bank</td><td>16161</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Esan Microfinance Bank</td><td>16162</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Eso-E Microfinance Bank</td><td>16163</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>eTRANZACT</td><td>16164</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Evangel MFB</td><td>16165</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Evergreen MICROFINANCE BANK</td><td>16166</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Eyowo MFB</td><td>16167</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>FAST Microfinance Bank</td><td>16168</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>FBN MOBILE</td><td>16169</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>FBN Mortgages Limited</td><td>16170</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>FBNQuest Merchant Bank</td><td>16171</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>FCMB Easy Account</td><td>16172</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>FCMB Plc</td><td>16173</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>FCT MFB</td><td>16174</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>FEDERAL UNIVERSITY DUTSE MICROFINANCE BANK</td><td>16175</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>FederalPoly NasarawaMFB</td><td>16176</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>FETS</td><td>16177</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>FFS Microfinance Bank</td><td>16178</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Fidelity Bank</td><td>16179</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Fidelity Mobile</td><td>16180</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Fidfund Microfinance Bank</td><td>16181</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>FINATRUST MICROFINANCE BANK</td><td>16182</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Firmus MFB</td><td>16183</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>First Bank of Nigeria</td><td>16184</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>First Generation Mortgage Bank</td><td>16185</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>First Multiple MFB</td><td>16186</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>First Option MFB</td><td>16187</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>First Royal Microfinance Bank</td><td>16188</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>First Trust Mortgage Bank Plc</td><td>16189</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>FirstMonie Wallet</td><td>16190</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Flutterwave Technology Solutions Limited</td><td>16191</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Fortis Micro-finance Bank</td><td>16192</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Fortis Mobile</td><td>16193</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>FSDH Merchant Bank</td><td>16194</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Fullrange Microfinance Bank</td><td>16195</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Futo Microfinance Bank</td><td>16196</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Gashua Microfinance Bank</td><td>16197</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Gateway Mortgage Bank</td><td>16198</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Globus Bank</td><td>16199</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Glory MFB</td><td>16200</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>GoMoney</td><td>16201</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>GOODNEWS MICROFINANCE BANK</td><td>16202</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Gowans Microfinance Bank</td><td>16203</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>GreenBank Microfinance Bank</td><td>16204</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Greenville Microfinance Bank</td><td>16205</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Greenwich Merchant Bank</td><td>16206</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Grooming Microfinance Bank</td><td>16207</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>GT MOBILE</td><td>16208</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>GTBank Mobile Money</td><td>16209</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>GTBank Plc</td><td>16210</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Hackman Microfinance Bank</td><td>16211</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Haggai Mortgage Bank Limited</td><td>16212</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Hala MFB</td><td>16213</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Hasal Micro-finance Bank</td><td>16214</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Hedonmark</td><td>16215</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Heritage Bank</td><td>16216</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>IBILE Microfinance Bank</td><td>16217</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>IKENNE MFB</td><td>16218</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Ikire MFB</td><td>16219</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Imo State Microfinance Bank</td><td>16220</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Imperial Homes Mortgage Bank</td><td>16221</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Infinity Microfinance Bank</td><td>16222</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Infinity Trust Mortgage Bank</td><td>16223</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Innovectives Kesh</td><td>16224</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Intellfin</td><td>16225</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>IRL Microfinance Bank</td><td>16226</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>JAIZ Bank</td><td>16227</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Jubliee Life</td><td>16228</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Kadick Integration Limited</td><td>16229</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Kadpoly MICROFINANCE BANK</td><td>16230</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>KCMB Microfinance Bank</td><td>16231</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Kegow</td><td>16232</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Keystone Bank</td><td>16233</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Kontagora MFB</td><td>16234</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Kuda Micro-finance Bank</td><td>16235</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>La Fayette Microfinance Bank</td><td>16236</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Lagos Building Investment Company</td><td>16237</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Lapo Microfinance Bank</td><td>16238</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Lavender Microfinance Bank</td><td>16239</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Letshego MFB</td><td>16240</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Lovonus Microfinance Bank</td><td>16241</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>M36</td><td>16242</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Mainland MICROFINANCE BANK</td><td>16243</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Mainstreet Micro-finance Bank</td><td>16244</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Malachy Microfinance Bank</td><td>16245</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Manny Microfinance bank</td><td>16246</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>MAUTECH Microfinance Bank</td><td>16247</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Mayfair MFB</td><td>16248</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>MayFresh Mortgage Bank</td><td>16249</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Megapraise Microfinance Bank</td><td>16250</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Meridian MFB</td><td>16251</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Microcred Microfinance Bank</td><td>16252</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Midland Microfinance Bank</td><td>16253</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Mint-Finex Micro-finance Bank</td><td>16254</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Mkudi</td><td>16255</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Money Trust Micro-finance Bank</td><td>16256</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>MoneyBox</td><td>16257</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Mutual Benefits Microfinance Bank</td><td>16258</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Mutual Trust Microfinance Bank</td><td>16259</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Nagarta Microfinance Bank</td><td>16260</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Navy Microfinance Bank</td><td>16261</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Ndiorah Microfinance Bank</td><td>16262</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>New Dawn Microfinance Bank</td><td>16263</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>New Prudential Bank</td><td>16264</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>NIP Virtual Bank</td><td>16265</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>NIRSAL Microfinance Bank</td><td>16266</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Nnew women MFB</td><td>16267</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Nova Merchant Bank</td><td>16268</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>NPF Micro-finance Bank</td><td>16269</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Oche MFB</td><td>16270</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Ohafia Microfinance Bank</td><td>16271</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Okpoga Microfinance Bank</td><td>16272</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Olabisi Onabanjo University Microfinance Bank</td><td>16273</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Omiye MFB</td><td>16274</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Omoluabi Mortgage Bank Plc</td><td>16275</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>One Finance</td><td>16276</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>PAGA</td><td>16277</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Page Micro-finance Bank</td><td>16278</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>PALMPAY</td><td>16279</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>PARALLEX BANK</td><td>16280</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Parkway</td><td>16281</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>ParkWay-ReadyCash</td><td>16282</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Parralex Microfinance bank</td><td>16283</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>PatrickGold Microfinance Bank</td><td>16284</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>PayAttitude Online</td><td>16285</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>PAYCOM</td><td>16286</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>PecanTrust Microfinance Bank</td><td>16287</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Pennywise Microfinance Bank</td><td>16288</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Personal Trust Microfinance Bank</td><td>16289</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Petra Microfinance Bank</td><td>16290</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Pillar MFB</td><td>16291</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Platinum Mortgage Bank</td><td>16292</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Polaris Bank</td><td>16293</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Polyuwanna MFB</td><td>16294</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Prestige Microfinance bank</td><td>16295</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Providus Bank</td><td>16296</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Purplemoney MFB</td><td>16297</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Quickfund Microfinance Bank</td><td>16298</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Rahama MFB</td><td>16299</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Rand Merchant Bank</td><td>16300</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Refuge Mortgage Bank</td><td>16301</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Regent Micro-finance Bank</td><td>16302</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Reliance Microfinance Bank</td><td>16303</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>RenMoney Microfinance Bank</td><td>16304</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Rephidim MICROFINANCE BANK</td><td>16305</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Richway Microfinance Bank</td><td>16306</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Royal Exchange Microfinance Bank</td><td>16307</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Rubies Micro-finance Bank</td><td>16308</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Safe Haven MFB</td><td>16309</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>SafeTrust</td><td>16310</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Sagamu Micro-finance Bank</td><td>16311</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Seed Capital Micro-finance Bank</td><td>16312</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Sparkle</td><td>16313</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Stanbic IBTC @ease Wallet</td><td>16314</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Stanbic IBTC Bank</td><td>16315</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Stanbic Mobile</td><td>16316</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Standard Chartered Bank</td><td>16317</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Stanford Microfinance Bak</td><td>16318</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Stellas Microfinance Bank</td><td>16319</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Sterling Bank</td><td>16320</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Sterling Mobile</td><td>16321</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Sulsap MFB</td><td>16322</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Suntrust Bank Nigeria Limited</td><td>16323</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>TAGPAY</td><td>16324</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Taj Bank</td><td>16325</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>TCF Micro-finance Bank</td><td>16326</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Teasy MOBILE</td><td>16327</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Titan Trust Bank</td><td>16328</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Trident Microfinance Bank</td><td>16329</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Trust MFB</td><td>16330</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Trustbond Mortgage Bank</td><td>16331</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Trustfund Microfinance Bank</td><td>16332</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>U AND C MFB</td><td>16333</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>UNAAB MFB</td><td>16334</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Uniben Microfinance Bank</td><td>16335</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Unical Microfinance Bank</td><td>16336</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Union Bank</td><td>16337</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>United Bank for Africa</td><td>16338</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Unity Bank</td><td>16339</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>UNN MFB</td><td>16340</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Verite Microfinance Bank</td><td>16341</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>VFD Micro-finance Bank</td><td>16342</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Virtue Microfinance Bank</td><td>16343</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Visa Microfinance Bank</td><td>16344</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>VT Networks</td><td>16345</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Wema Bank</td><td>16346</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>WetLand Micro-finance Bank</td><td>16347</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Xslnce Microfinance Bank</td><td>16348</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Yes Microfinance Bank</td><td>16349</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>Zenith Bank Plc</td><td>16350</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>ZENITH Mobile</td><td>16351</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</a></td></tr><tr><td>ZINTERNET - KONGAPAY</td><td>16352</td><td>APM Payout</td><td>Nigeria</td><td><a href="#apm-payout-request-example-for-nigeria">APM Payout request example for Nigeria</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-g-xchange-inc.-gcash-philippines-40000">Link request example for G-XChange Inc. (GCash), Philippines (40000)</a><br><a href="#apm-payout-request-example-for-g-xchange-inc.-gcash-philippines-40000">APM Payout request example for G-XChange Inc. (GCash), Philippines (40000)</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-paymaya-philippines-40001">Link request example for PayMaya Philippines (40001)</a><br><a href="#apm-payout-request-example-for-paymaya-philippines-philippines-40001">APM Payout request example for PayMaya Philippines, Philippines (40001)</a></td></tr><tr><td>DBS BANK LIMITED</td><td>55001</td><td>APM Payout</td><td>Singapore</td><td><a href="#apm-payout-request-example-for-singapore">APM Payout request example for Singapore</a></td></tr><tr><td>MAYBANK - MBB</td><td>55002</td><td>APM Payout</td><td>Singapore</td><td><a href="#apm-payout-request-example-for-singapore">APM Payout request example for Singapore</a></td></tr><tr><td>MAYBANK - MBBE</td><td>55003</td><td>APM Payout</td><td>Singapore</td><td><a href="#apm-payout-request-example-for-singapore">APM Payout request example for Singapore</a></td></tr><tr><td>OCBC BANK</td><td>55004</td><td>APM Payout</td><td>Singapore</td><td><a href="#apm-payout-request-example-for-singapore">APM Payout request example for Singapore</a></td></tr><tr><td>STANDARD CHARTERED</td><td>55005</td><td>APM Payout</td><td>Singapore</td><td><a href="#apm-payout-request-example-for-singapore">APM Payout request example for Singapore</a></td></tr><tr><td>UNITED OVERSEAS BANK LIMITED</td><td>55006</td><td>APM Payout</td><td>Singapore</td><td><a href="#apm-payout-request-example-for-singapore">APM Payout request example for Singapore</a></td></tr><tr><td>Bank Transfer</td><td>55007</td><td>Link / APM Payout</td><td>Singapore</td><td><a href="#link-request-example-for-paynow-55008-and-bank-transfer-55007-singapore">Link request example for Bank Transfer Singapore (55007)</a><br><a href="#apm-payout-request-example-for-singapore">APM Payout request example for Singapore</a></td></tr><tr><td>Paynow</td><td>55008</td><td>Link / APM Payout</td><td>Singapore</td><td><a href="#link-request-example-for-paynow-55008-and-bank-transfer-55007-singapore">Link request example for Paynow Singapore (55007)</a><br><a href="#apm-payout-request-example-for-singapore">APM Payout request example for Singapore</a></td></tr><tr><td>CIMB Bank Berhad</td><td>55009</td><td>APM Payout</td><td>Singapore</td><td><a href="#apm-payout-request-example-for-singapore">APM Payout request example for Singapore</a></td></tr><tr><td>HSBC</td><td>55010</td><td>APM Payout</td><td>Singapore</td><td><a href="#apm-payout-request-example-for-singapore">APM Payout request example for Singapore</a></td></tr><tr><td>Maybank</td><td>55011</td><td>APM Payout</td><td>Singapore</td><td><a href="#apm-payout-request-example-for-singapore">APM Payout request example for Singapore</a></td></tr><tr><td>RHB Bank Berhad</td><td>55012</td><td>APM Payout</td><td>Singapore</td><td><a href="#apm-payout-request-example-for-singapore">APM Payout request example for Singapore</a></td></tr><tr><td>Citibank Berhad</td><td>55013</td><td>APM Payout</td><td>Singapore</td><td><a href="#apm-payout-request-example-for-singapore">APM Payout request example for Singapore</a></td></tr><tr><td>Industrial and Commercial Bank of China</td><td>55014</td><td>APM Payout</td><td>Singapore</td><td><a href="#apm-payout-request-example-for-singapore">APM Payout request example for Singapore</a></td></tr><tr><td>Pago Seguro Electronico (PSE)</td><td>57000</td><td>Link</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br></td></tr><tr><td>Transfiya</td><td>57002</td><td>Link</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br></td></tr><tr><td>Nequi</td><td>57003</td><td>Link</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br></td></tr><tr><td>Nequi Payout</td><td>57006</td><td>APM Payout</td><td>Colombia</td><td><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>BANCAMIA S.A.</td><td>57007</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>BANCO AGRARIO</td><td>57008</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>BANCO AV VILLAS</td><td>57009</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>BANCO BBVA COLOMBIA S.A.</td><td>57010</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>BANCO CAJA SOCIAL</td><td>57011</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>BANCO COOPERATIVO COOPCENTRAL</td><td>57012</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>BANCO CREDIFINANCIERA</td><td>57013</td><td>APM Payout</td><td>Colombia</td><td><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>BANCO DAVIVIENDA</td><td>57014</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>BANCO DE BOGOTA</td><td>57015</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>BANCO DE OCCIDENTE</td><td>57016</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>BANCO FALABELLA</td><td>57017</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>BANCO GNB SUDAMERIS</td><td>57018</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>BANCO ITAU</td><td>57019</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>BANCO PICHINCHA S.A.</td><td>57020</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>BANCO POPULAR</td><td>57021</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>BANCO SANTANDER COLOMBIA</td><td>57022</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>BANCO SERFINANZA</td><td>57023</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>BANCO UNION antes GIROS</td><td>57024</td><td>APM Payout</td><td>Colombia</td><td><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>BANCOLOMBIA</td><td>57025</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>BANCOOMEVA S.A.</td><td>57026</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>CFA COOPERATIVA FINANCIERA</td><td>57027</td><td>APM Payout</td><td>Colombia</td><td><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>CITIBANK</td><td>57028</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>COLTEFINANCIERA</td><td>57029</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>CONFIAR COOPERATIVA FINANCIERA</td><td>57030</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>COOFINEP COOPERATIVA FINANCIERA</td><td>57031</td><td>APM Payout</td><td>Colombia</td><td><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>COTRAFA</td><td>57032</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>DAVIPLATA</td><td>57033</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>IRIS</td><td>57034</td><td>APM Payout</td><td>Colombia</td><td><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>LULO BANK</td><td>57035</td><td>APM Payout</td><td>Colombia</td><td><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>MOVII S.A.</td><td>57036</td><td>APM Payout</td><td>Colombia</td><td><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>SCOTIABANK COLPATRIA</td><td>57037</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>Banco Finandina S.A.</td><td>57039</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>Banco Multibank S.A.</td><td>57040</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>Banco W S.A.</td><td>57042</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>Bancóldex S.A.</td><td>57043</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>Financiara Juriscoop S.A. Compañía de Financiamiento</td><td>57044</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>Banco Mundo Mujer</td><td>57047</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>Banco Santander de Negocios Colombia S.A. (Special Bank)</td><td>57052</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>MOVII</td><td>57058</td><td>APM Payout</td><td>Colombia</td><td><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>Bre-B</td><td>57158</td><td>Link / APM Payout</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br><a href="#apm-payout-request-example-for-colombia-57000">APM Payout request example for Colombia</a></td></tr><tr><td>Bre-KEY</td><td>57159</td><td>Link</td><td>Colombia</td><td><a href="#link-request-example-for-colombia-57000">Link request example for Colombia</a><br></td></tr><tr><td>BKM Express</td><td>58000</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>Papara Wallet</td><td>58001</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>Papara QR</td><td>58002</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>Credit Card</td><td>58003</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>Debit Card</td><td>58004</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>Papara Account</td><td>58005</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>Papara Email</td><td>58006</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>Papara Phone</td><td>58007</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>Papara TCKN</td><td>58008</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>Papara IBAN</td><td>58009</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>Havale</td><td>58104</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>Papara</td><td>58203</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>Paycell</td><td>58204</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>Tosla</td><td>58205</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>Fups</td><td>58206</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>Credit Card</td><td>58207</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>Para Kolay</td><td>58208</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>Paratim</td><td>58209</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>MoneyTolia</td><td>58210</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>Ahlpay</td><td>58211</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>Hayhay</td><td>58212</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>Hadi Pay</td><td>58213</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>Papel</td><td>58214</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>Pro Cuzdan</td><td>58215</td><td>Link</td><td>Turkey</td><td><a href="#link-request-example-for-turkey">Link request example for Turkey</a><br></td></tr><tr><td>T.C. Ziraat Bankasi A.S.</td><td>58216</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>Turkiye Halk Bankasi A.S.</td><td>58217</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>Turkiye Vakiflar Bankasi T.A.O.</td><td>58218</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>Ziraat Dinamik Banka A.S.</td><td>58219</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>Akbank T.A.S.</td><td>58220</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>Alternatifbank A.S.</td><td>58221</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>Anadolubank A.S.</td><td>58222</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>Burgan Bank A.S.</td><td>58223</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>Citibank A.S.</td><td>58224</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>Denizbank A.S.</td><td>58225</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>Fibabanka A.S.</td><td>58226</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>HSBC Bank A.S.</td><td>58227</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>ING Bank A.S.</td><td>58228</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>QNB Bank A.S.</td><td>58229</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>Sekerbank T.A.S.</td><td>58230</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>Turk Ekonomi Bankasi A.S.</td><td>58231</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>Turkiye Garanti Bankasi A.S.</td><td>58232</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>Turkiye Is Bankasi A.S.</td><td>58233</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>Yapi ve Kredi Bankasi A.S.</td><td>58234</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>Albaraka Turk Katilim Bankasi A.S.</td><td>58235</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>Kuveyt Turk Katilim Bankasi A.S.</td><td>58236</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>Turkiye Finans Katilim Bankasi A.S.</td><td>58237</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>Vakif Katilim Bankasi A.S.</td><td>58238</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>Ziraat Katilim Bankasi A.S.</td><td>58239</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>T.O.M Katilim Bankasi</td><td>58240</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>Enpara</td><td>58241</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>Diger</td><td>58242</td><td>APM Payout</td><td>Turkey</td><td><a href="#apm-payout-request-example-for-turkey">APM Payout request example for Turkey</a></td></tr><tr><td>Orange Mobile Money</td><td>64001</td><td>Link / APM Payout</td><td>Senegal</td><td><a href="#link-request-example-for-orange-mobile-money-senegal-64001">Link request example for Orange Mobile Money, Senegal (64001)</a><br><a href="#apm-payout-request-example-for-senegal">APM Payout request example for Senegal</a></td></tr><tr><td>Wave</td><td>64002</td><td>Link / APM Payout</td><td>Senegal</td><td><a href="#link-request-example-for-wave-senegal-64002">Link request example for Wave, Senegal (64002)</a><br><a href="#apm-payout-request-example-for-senegal">APM Payout request example for Senegal</a></td></tr><tr><td>Orange Mobile Money</td><td>64100</td><td>Link / APM Payout</td><td>Ivory Coast</td><td><a href="#link-request-example-for-orange-mobile-money-ivory-coast-64100">Link request example for Orange Mobile Money, Ivory Coast (64100)</a><br><a href="#apm-payout-request-example-for-ivory-coast">APM Payout request example for Ivory Coast</a></td></tr><tr><td>Mtn Mobile Money</td><td>64101</td><td>Link / APM Payout</td><td>Ivory Coast</td><td><a href="#link-request-example-for-mtn-ivory-coast-64101">Link request example for MTN, Ivory Coast (64101)</a><br><a href="#apm-payout-request-example-for-ivory-coast">APM Payout request example for Ivory Coast</a></td></tr><tr><td>Moov Mobile Money</td><td>64102</td><td>Link / APM Payout</td><td>Ivory Coast</td><td><a href="#link-request-example-for-moov-ivory-coast-64102">Link request example for Moov, Ivory Coast (64102)</a><br><a href="#apm-payout-request-example-for-ivory-coast">APM Payout request example for Ivory Coast</a></td></tr><tr><td>Wave</td><td>64103</td><td>Link / APM Payout</td><td>Ivory Coast</td><td><a href="#link-request-example-for-wave-ivory-coast-64103">Link request example for Wave, Ivory Coast (64103)</a><br><a href="#apm-payout-request-example-for-ivory-coast">APM Payout request example for Ivory Coast</a></td></tr><tr><td>KZT Mobile, Kazakhstan</td><td>70000</td><td>Link</td><td>Kazakhstan</td><td><a href="#link-request-example-for-kzt-mobile-kazakhstan-70000">Link request example for KZT Mobile, Kazakhstan (70000)</a></td></tr><tr><td>QR</td><td>69003</td><td>Link</td><td>Nepal</td><td><a href="#link-request-example-for-qr-nepal-69003">Link request example for QR, Nepal (69003).</a></td></tr><tr><td>Khalti</td><td>69000</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Imepay</td><td>69002</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Lumbini Bank</td><td>69005</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Saptakoshi Development Bank</td><td>69006</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Citizen bank</td><td>69008</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Reliance Finance Bank</td><td>69009</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Janata Bank</td><td>69010</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Shangri-la Development Bank</td><td>69011</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>NEPAL BANGLADESH BANK</td><td>69012</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>MACHHAPUCHRE BANK</td><td>69013</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Laxmi Sunrise Bank</td><td>69014</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Mahalaxmi Bikas Bank</td><td>69015</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Corporate Development Bank</td><td>69016</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>PRABHU BANK</td><td>69017</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>GARIMA BIKAS BANK</td><td>69018</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>NIMB Bank</td><td>69019</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Kamana Sewa Bikas Bank</td><td>69020</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Shine Resunga Bank</td><td>69021</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>EXCEL Bank</td><td>69022</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Sanima Bank</td><td>69023</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Nepal Investment Bank</td><td>69024</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Lumbini Bikas Bank</td><td>69025</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>CBL Bank</td><td>69026</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>NEPAL SBI BANK</td><td>69027</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Everest Bank</td><td>69028</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Salapa Bikash Bank</td><td>69029</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>NMB Bank</td><td>69030</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Miteri Development Bank</td><td>69031</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Siddhartha Bank</td><td>69032</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Narayani Development Bank</td><td>69033</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Global IME Bank</td><td>69034</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Gurkhas Finance Bank</td><td>69035</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Muktinath Bikas Bank</td><td>69036</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>SAHARA Bank</td><td>69037</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>NABIL Bank</td><td>69038</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>NCCB Bank</td><td>69039</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>NIC ASIA Bank</td><td>69040</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Green Development Bank</td><td>69041</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>KUMARI BANK</td><td>69042</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Jyoti Bikash Bank</td><td>69043</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Prime Bank</td><td>69044</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Karnali Development Bank</td><td>69045</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Himalayan Bank</td><td>69046</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Century Bank</td><td>69047</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Bank of Kathmandu Bank</td><td>69048</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Sindhu Bikas Bank</td><td>69049</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Standard Chartered Bank Nepal Bank</td><td>69050</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Agricultural development bank</td><td>69051</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Rastriya Banijya Bank</td><td>69052</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Manjushree Finance</td><td>69054</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Nepal bank</td><td>69055</td><td>APM Payout</td><td>Nepal</td><td><a href="#apm-payout-request-example-for-nepal-69000">APM Payout request example for Nepal (69000-...)</a></td></tr><tr><td>Multicaixa Express</td><td>75000</td><td>Link / APM Payout</td><td>Angola</td><td><a href="#link-request-example-for-angola-75000-75001">Link request example for Angola (75000, 75001)</a><br><a href="#apm-payout-request-example-for-angola">APM Payout request example for Angola</a></td></tr><tr><td>Referencepay</td><td>75001</td><td>Link / APM Payout</td><td>Angola</td><td><a href="#link-request-example-for-angola-75000-75001">Link request example for Angola (75000, 75001)</a><br><a href="#apm-payout-request-example-for-angola">APM Payout request example for Angola</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
          }
}
```

#### Link request example for APM UPI Payment (2000)

```javascript
{
	"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 APM PhonePe Payment (2006)

```javascript
{
	"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": {
              "firstName": "John",
              "lastName": "Deer",
              "phone": "9555777666",
              "address": "Avishkar Ram Maruti Naupada 66 2",
              "paymentTypeId": 2006
          }
}
```

#### Link request example for BTC (10100)

```json
{
  "amount": 0.00045,
  "currency": "BTC",
  "description": "Payment for products",
  "invoiceId": "11222344",
  "accountId": "user@email.net",
  "successUrl": "https://example.com/success",
  "failureUrl": "https://example.com/failure",
  "pendingUrl": "https://example.com/pending",
  "cancelUrl": "https://example.com/cancel",
  "ip": "10.10.10.10",
  "data": {
      "paymentTypeId":10100
    }
}
```

#### Link request example for Virtual Banking, South Korea (50033)

```json
{
	"amount": 60000,
	"accountId": "john@deer.com",
        "currency": "KRW",
	"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": "17181927934",
              "firstName": "John",
              "lastName": "Deer",
              "phone": "9555777666",
              "address": "18-5, Chunui-dong",
              "paymentTypeId": 50033
          }
}
```

#### Link request example for APM Netbanking in India (2014)

```javascript
{
	"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": {
              "firstName": "John",
              "lastName": "Deer",
              "phone": "9555777666",
              "address": "Avishkar Ram Maruti Naupada 66 2",
              "paymentTypeId": 2014
          }
}
```

#### 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",
 "data": {
            "firstName": "John",
            "lastName": "Deer",
            "paymentTypeId": 7022
        }
}
```

#### Link request example for QR, Nepal (69003).

```json
{
 "amount": 10000.00,
 "accountId": "john@deer.com",
 "currency": "NPR",
 "description": "Payment for products",
 "invoiceId": "1928398740527",
 "successUrl": "https://example.com/success",
 "failureUrl": "https://example.com/failure",
 "pendingUrl": "https://example.com/pending",
 "cancelUrl": "https://example.com/cancel",
 "data": {
            "firstName": "John",
            "lastName": "Deer",
            "personId":"01910017516647", // or bankAccountNumber
            "paymentTypeId": 69003
        }
}
```

#### APM Payout request example for Nepal (69000-...)

```json
{
 "amount": 10000.00,
 "accountId": "john@deer.com",
 "currency": "NPR",
 "description": "Payment for products",
 "invoiceId": "1928398740527",
 "name": "John Deer",
 "data": {
            "firstName": "John",
            "lastName": "Deer",
            "bankAccountNumber":"01910017516647", // or personId
            "paymentTypeId": 69000
        }
}
```

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

```json
{
 "amount": 100000.00,
 "accountId": "john@deer.com",
 "currency": "NPR",
 "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",
 "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
        }
}
```

#### Link request example for APM with list of available banks in India (2060)

```javascript
{
	"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": {
              "firstName": "John",
              "lastName": "Deer",
              "phone": "9555777666",
              "address": "Avishkar Ram Maruti Naupada 66 2",
              "paymentTypeId": 2060
          }
}
```

#### Link Request Example for SEPA Transfer (6001)

```javascript
{
	"amount": 80.55,
	"accountId": "john@deer.com",
	"currency": "EUR",
	"description": "Payment for products",
	"invoiceId": "080720218279",
	"successUrl": "https://example.com/success",
	"failureUrl": "https://example.com/failure",
        "pendingUrl": "https://example.com/pending",
        "cancelUrl": "https://example.com/cancel",
        "data": {
              "firstName": "John",
              "lastName": "Deer",
              "phone": "7999383979",
              "address": "Prager Str 75 Tutzing Schleswig-Holstein",
              "paymentTypeId": 6001
          }
}
```

#### Link request example for EasyPaisa (56500)

```json
{
    "amount": 10000,
    "accountId": "john@deer.com",
    "currency": "PKR",
    "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",
    "ip": "10.10.24.65",
    "data": {
        "personId": "03014333611", // Payer account number
        "firstName": "John",
        "lastName": "Deer",
        "phone": "03014333611",
        "documentId": "3440289238550", // CNIC 13 symbols
        "address": "18-5, Chunui-dong",
        "paymentTypeId": 56500
    }
}
```

#### Link request example for JazzCash (56501)

```json
{
    "amount": 10000,
    "accountId": "john@deer.com",
    "currency": "PKR",
    "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",
    "ip": "10.10.24.65",
    "data": {
        "personId": "03014333611", // Payer account number
        "firstName": "John",
        "lastName": "Deer",
        "phone": "03014333611",
        "documentId": "3440289238550", // CNIC 13 symbols
        "address": "18-5, Chunui-dong",
        "paymentTypeId": 56501
    }
}
```

#### Link request example for Bank Transfer, Nigeria (16401)

```json
{
    "amount": 1000,
    "accountId": "john@deer.com",
    "currency": "NGN",
    "description": "Payment for products",
    "successUrl": "https://example.com/success",
    "failureUrl": "https://example.com/failure",
    "pendingUrl": "https://example.com/pending",
    "cancelUrl": "https://example.com/cancel",
    "ip": "10.10.24.65",
    "data": {
        "paymentTypeId": 16401
    }
}
```

#### Link request example for G-XChange Inc. (GCash), Philippines (40000)

```json
{
    "amount": 100,
    "accountId": "john@deer.com",
    "currency": "PHP",
    "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": {
        "firstName": "John",
        "lastName": "Deer",
        "phone": "03123456789", // Phone number format start from '03' + 9 digits numbers
        "address": "Avishkar Ram Maruti Naupada 66 2",
        "paymentTypeId": 40000
    }
}
```

#### Link request example for PayMaya Philippines (40001)

```json
{
    "amount": 100,
    "accountId": "john@deer.com",
    "currency": "PHP",
    "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": {
        "firstName": "John",
        "lastName": "Deer",
        "phone": "03123456789", // Phone number format start from '03' + 9 digits numbers
        "address": "Avishkar Ram Maruti Naupada 66 2",
        "paymentTypeId": 40001
    }
}
```

#### Link request example for Paynow (55008) and Bank Transfer (55007) Singapore

```json
{
  "amount": 100,
  "accountId": "test@test.com",
  "currency": "SGD",
  "description": "Payment for products",
  "successUrl": "https://google.com",
  "failureUrl": "https://example.com/failure",
  "pendingUrl": "https://example.com/pending",
  "cancelUrl": "https://example.com/cancel",
  "ip": "10.10.24.65",
  "data": {
    "paymentTypeId": 55008
  }
}
```

#### Link request example for Colombia (57000-...)

```json
{
  "amount": 10000,
  "name": "John Deer",
  "accountId": "test@test.com",
  "currency": "COP",
  "description": "Payment for products",
  "successUrl": "https://google.com",
  "failureUrl": "https://example.com/failure",
  "pendingUrl": "https://example.com/pending",
  "cancelUrl": "https://example.com/cancel",
  "ip": "8.8.8.8",
  "data": {
    "phone": "9210394852",
    "documentType": "CC", // available types: CC, CE, TI, PA, NIT
    "documentId": "123456789",
    "paymentTypeId": 57000
  }
}
```

#### Link request example for Turkey

```json
{
  "amount": 1000,
  "accountId": "test@test.com",
  "currency": "TRY",
  "description": "Payment for products",
  "successUrl": "https://google.com",
  "failureUrl": "https://example.com/failure",
  "pendingUrl": "https://example.com/pending",
  "cancelUrl": "https://example.com/cancel",
  "ip": "8.8.8.8",
  "data": {
    "paymentTypeId": 58104,
    "phone": "05321234567"
  }
}
```

#### Link request example for Thai QR Payment, Thailand (7071)

```json
{
    "amount": 1000,
    "accountId": "test@test.com",
    "currency": "THB",
    "description": "Payment for products",
    "successUrl": "https://example.com/success",
    "failureUrl": "https://example.com/failure",
    "pendingUrl": "https://example.com/pending",
    "cancelUrl": "https://example.com/cancel",
    "ip": "10.10.24.65",
    "data": {
        "bankAccountNumber":"1234567891",
        "bankName": "7013", // Refer to Bank list section below
        "firstName": "John",
        "lastName": "Deer",
        "paymentTypeId": 7071
    }
}
```

#### Link request example for Orange Mobile Money, Senegal (64001)

```json
{
  "amount": 1000,
  "accountId": "test@test.com",
  "currency": "XOF",
  "description": "Payment for products",
  "successUrl": "https://example.com/success",
  "failureUrl": "https://example.com/failure",
  "pendingUrl": "https://example.com/pending",
  "cancelUrl": "https://example.com/cancel",
  "ip": "10.10.24.65",
  "data": {
    "phone": "771234567",
    "paymentTypeId": 64001
  }
}
```

#### Link request example for Wave, Senegal (64002)

```json
{
  "amount": 1000,
  "accountId": "test@test.com",
  "currency": "XOF",
  "description": "Payment for products",
  "successUrl": "https://example.com/success",
  "failureUrl": "https://example.com/failure",
  "pendingUrl": "https://example.com/pending",
  "cancelUrl": "https://example.com/cancel",
  "ip": "10.10.24.65",
  "data": {
    "phone": "771234567",
    "paymentTypeId": 64002
  }
}
```

#### Link request example for Orange Mobile Money, Ivory Coast (64100)

```json
{
  "amount": 1000,
  "accountId": "test@test.com",
  "currency": "XOF",
  "description": "Payment for products",
  "successUrl": "https://example.com/success",
  "failureUrl": "https://example.com/failure",
  "pendingUrl": "https://example.com/pending",
  "cancelUrl": "https://example.com/cancel",
  "ip": "10.10.24.65",
  "data": {
    "phone": "0712345678",
    "paymentTypeId": 64100
  }
}
```

#### Link request example for MTN, Ivory Coast (64101)

```json
{
  "amount": 1000,
  "accountId": "test@test.com",
  "currency": "XOF",
  "description": "Payment for products",
  "successUrl": "https://example.com/success",
  "failureUrl": "https://example.com/failure",
  "pendingUrl": "https://example.com/pending",
  "cancelUrl": "https://example.com/cancel",
  "ip": "10.10.24.65",
  "data": {
    "phone": "0712345678",
    "paymentTypeId": 64101
  }
}
```

#### Link request example for Moov, Ivory Coast (64102)

```json
{
  "amount": 1000,
  "accountId": "test@test.com",
  "currency": "XOF",
  "description": "Payment for products",
  "successUrl": "https://example.com/success",
  "failureUrl": "https://example.com/failure",
  "pendingUrl": "https://example.com/pending",
  "cancelUrl": "https://example.com/cancel",
  "ip": "10.10.24.65",
  "data": {
    "phone": "0712345678",
    "paymentTypeId": 64102
  }
}
```

#### Link request example for Wave, Ivory Coast (64103)

```json
{
  "amount": 1000,
  "accountId": "test@test.com",
  "currency": "XOF",
  "description": "Payment for products",
  "successUrl": "https://example.com/success",
  "failureUrl": "https://example.com/failure",
  "pendingUrl": "https://example.com/pending",
  "cancelUrl": "https://example.com/cancel",
  "ip": "10.10.24.65",
  "data": {
    "phone": "0712345678",
    "paymentTypeId": 64103
  }
}
```

#### Link request example for KZT Mobile, Kazakhstan (70000)

```json
{
  "amount": 1000,
  "accountId": "test@test.com",
  "currency": "KZT",
  "description": "Payment for products",
  "successUrl": "https://example.com/success",
  "failureUrl": "https://example.com/failure",
  "pendingUrl": "https://example.com/pending",
  "cancelUrl": "https://example.com/cancel",
  "ip": "10.10.24.65",
  "data": {
    "phone": "79991234567",
    "paymentTypeId": 70000
  }
}
```

#### Link request example for Angola (75000, 75001)

```json
{
  "amount": 1000,
  "accountId": "test@test.com",
  "currency": "AOA",
  "description": "Payment for products",
  "successUrl": "https://example.com/success",
  "failureUrl": "https://example.com/failure",
  "pendingUrl": "https://example.com/pending",
  "cancelUrl": "https://example.com/cancel",
  "ip": "10.10.24.65",
  "data": {
    "phone": "923123456",
    "paymentTypeId": 75000
  }
}
```

### Bank list for 'bankName' field

| bankName | Title                                                             | Country  |
| -------- | ----------------------------------------------------------------- | -------- |
| 31000    | Bank for Agriculture and Agricultural Cooperatives                | Thailand |
| 31002    | Bank Of Ayudhya                                                   | Thailand |
| 7013     | Bangkok bank                                                      | Thailand |
| 7017     | CIMB Thai Bank Public Company Limited                             | Thailand |
| 31003    | Citibank Thailand                                                 | Thailand |
| 7020     | Government Housing Bank                                           | Thailand |
| 7018     | Government Savings Bank                                           | Thailand |
| 31004    | HSBC                                                              | Thailand |
| 31005    | ICBC                                                              | Thailand |
| 31006    | Islamic Bank of Thailand                                          | Thailand |
| 7014     | Kasikorn Bank                                                     | Thailand |
| 8013     | Kiatnakin Bank                                                    | Thailand |
| 7023     | Land and Houses Bank Public Company Limited                       | Thailand |
| 7012     | Siam Commercial Bank. Ltd.                                        | Thailand |
| 31049    | Standard Chartered Bank Nakornthon PCL.                           | Thailand |
| 7022     | Standard Chartered Bank (Thai) PCL., Thailand                     | Thailand |
| 31008    | Sumitomo Mitsui Banking Corporation                               | Thailand |
| 31050    | Thanachart Bank PCL.                                              | Thailand |
| 31024    | The Thai Credit Retail Bank                                       | Thailand |
| 31001    | TISCO Bank                                                        | Thailand |
| 7089     | TMBThanachart Bank                                                | Thailand |
| 7088     | UOB Bank                                                          | Thailand |
| 31051    | AIG Retail Bank PCL.                                              | Thailand |
| 31010    | Bank of America                                                   | Thailand |
| 31011    | BNP PARIBAS                                                       | Thailand |
| 31012    | Bank of China                                                     | Thailand |
| 31013    | Bank Of Tokyo Mitsubishi                                          | Thailand |
| 31052    | Agrigol Bank Indonesia                                            | Thailand |
| 31015    | Deutsche Bank                                                     | Thailand |
| 31016    | Export-Import BANK OF Thailand                                    | Thailand |
| 31017    | Indian Overseas Bank                                              | Thailand |
| 31018    | JP Morgan Chase Bank                                              | Thailand |
| 31019    | Mega International Commercial Bank                                | Thailand |
| 31020    | Oversea Chinese Banking Corp. Ltd.                                | Thailand |
| 31021    | ABN-AMRO Bank N.V.                                                | Thailand |
| 31022    | RHB Bank Limited                                                  | Thailand |
| 31023    | SME Bank-Small and Medium Enterprise Development Bank of Thailand | Thailand |
| 8012     | Krung Thai Bank                                                   | Thailand |
| 31054    | ANZ Bank (Thai) PCL.                                              | Thailand |
| 31062    | Bank of Thailand                                                  | Thailand |
| 31007    | Mizuho Corporate Bank. Ltd.                                       | Thailand |

## APM Payout

<mark style="color:green;">`POST`</mark> `https://[api.hostname]/payments/apm/payout`

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

#### Headers

| Name          | Type   | Description               |
| ------------- | ------ | ------------------------- |
| Authorization | string | HTTP Basic Authentication |
| Content-Type  | string | application/json          |

#### Request Body

| Name        | Type   | Description                                                                                                     |
| ----------- | ------ | --------------------------------------------------------------------------------------------------------------- |
| amount      | number | Payout amount                                                                                                   |
| accountId   | string | Funds recipient e-mail address                                                                                  |
| currency    | string | Payout currency                                                                                                 |
| description | string | Payout description in text format                                                                               |
| invoiceId   | string | Order or invoice number                                                                                         |
| name        | string | Funds recipient name                                                                                            |
| data        | object | Additional data required for the payout processing. See request example for available fields in the data object |

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

```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     |

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

```javascript
{
	"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 example to India bank account (3021)

```javascript
{
	"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"
          }
}
```

#### APM Payout request example for SEPA Credit Transfer (6000)

```javascript
{
	"amount": 10,
	"accountId": "john@deer.com",
	"currency": "EUR",
	"description": "Payment for products",
	"invoiceId": "1928398740527",
 	"name": "John Deer",
	"data": {
            "bankAccountNumber": "LT837500018004669430",
            "paymentTypeId": 6000
        }
}
```

#### APM Payout for Virtual Banking, South Korea (50033)

```json
{
	"amount": 1000,
	"accountId": "john@deer.com",
	"currency": "KRW",
	"description": "Payout",
	"invoiceId": "123",
 	"name": "John Deer",
	"data": {
            "personId": "john123",
            "bankName": "Kwangju Bank",
            "bankAccountNumber": "123456789",
            "bankAccountHolder": "John Doe"
        }
}
```

#### APM Payout request example for EasyPaisa (56500)

```json
{
    "amount": 10000,
    "accountId": "john@deer.com",
    "currency": "PKR",
    "description": "Payout",
    "invoiceId": "123",
    "name": "John Deer",
    "data": {
        "personId": "03401234567", // Payer account number
        "phone": "03401234567",
        "documentId": "3440289238550", // cnic
        "paymentTypeId": 56500
    }
}
```

#### APM Payout request example for JazzCash (56501)

```json
{
    "amount": 10000,
    "accountId": "john@deer.com",
    "currency": "PKR",
    "description": "Payout",
    "invoiceId": "123",
    "name": "John Deer",
    "data": {
        "personId": "03401234567", // Payer account number
        "phone": "03401234567",
        "documentId": "3440289238550", // cnic
        "paymentTypeId": 56501
    }
}
```

#### APM Payout request example for Colombia (57000-...)

```json
{
    "amount": 10000,
    "accountId": "john@deer.com",
    "currency": "COP",
    "description": "Test Payment",
    "name": "John Deer",
    "data": {
        "documentType": "CC", // available types: CC, CE, TI, PA, NIT
        "documentId": "123456789",
        "phone": "3901239485",
        "bankAccountNumber": "1231231231231",
        "paymentTypeId": 57015
  }
}
```

#### APM Payout request example for G-XChange Inc. (GCash), Philippines (40000)

```json
{
    "amount": 500,
    "accountId": "john@deer.com",
    "currency": "PHP",
    "description": "Payout",
    "name": "John Deer",
    "data": {
        "personId": "03123456789", // Phone number format start from '03' + 9 digits numbers
        "paymentTypeId": 40000
    }
}
```

#### APM Payout request example for PayMaya Philippines, Philippines (40001)

```json
{
    "amount": 500,
    "accountId": "john@deer.com",
    "currency": "PHP",
    "description": "Payout",
    "name": "John Deer",
    "data": {
        "personId": "03123456789", // Phone number format start from '03' + 9 digits numbers
        "paymentTypeId": 40001
    }
}
```

#### APM Payout request example for Nigeria

```json
{
  "amount": 1000,
  "accountId": "john@deer.com",
  "currency": "NGN",
  "description": "Payout",
  "invoiceId": "1000047",
  "name": "John Deer",
  "data": {
    "phone": "9988776655",
    "bankAccountHolder": "John Doe", // Optional, name field used instead
    "bankAccountNumber": "0800000071",
    "paymentTypeId": 16346
  }
}
```

#### APM Payout request example for Senegal

```json
{
  "amount": 1000,
  "accountId": "john@deer.com",
  "currency": "XOF",
  "description": "Payout",
  "invoiceId": "1000047",
  "name": "John Deer",
  "data": {
    "personId": "701234567",
    "paymentTypeId": 64001
  }
}
```

#### APM Payout request example for Ivory Coast

```json
{
  "amount": 1000,
  "accountId": "john@deer.com",
  "currency": "XOF",
  "description": "Payout",
  "invoiceId": "1000047",
  "name": "John Deer",
  "data": {
    "personId": "701234567",
    "paymentTypeId": 64100
  }
}
```

#### APM Payout request example for Angola

```json
{
  "amount": 1000,
  "accountId": "john@deer.com",
  "currency": "XOF",
  "description": "Payout",
  "invoiceId": "1000047",
  "name": "John Deer",
  "data": {
    "personId": "923123456",
    "paymentTypeId": 75000
  }
}
```

#### APM Payout request example for Singapore

```json
{
  "amount": 1000,
  "accountId": "test@test.com",
  "currency": "SGD",
  "description": "Payment for products",
  "invoiceId": "1000085",
  "name": "John Deer",
  "data": {
    "paymentTypeId": 55010,
    "bankAccountNumber": "39845999749"
  }
}
```

#### APM Payout request example for Turkey

```json
{
  "amount": 1000,
  "accountId": "test@test.com",
  "currency": "TRY",
  "description": "Payment for products",
  "invoiceId": "1000075",
  "name": "John Deer",
  "data": {
    "paymentTypeId": 58216,
    "bankAccountNumber": "TR440001000012345678900001", // Optional, personId field used instead
    "bankAccountHolder": "John Doe", // Optional, name field used instead
  }
}
```

APM Payout is asynchronous operation. After the payout is requested, the request is created and sent to the processing system. The payout execution time depends on the processing system.  When the payout is processed, the final status of the payout will be sent as a [Notification](#notifications).

## APM Refund

<mark style="color:green;">`POST`</mark> `https://[api.hostname]/payments/apm/refund`

The method to return the funds of successfully completed payment operation

#### Headers

| Name          | Type   | Description               |
| ------------- | ------ | ------------------------- |
| Authorization | string | HTTP Basic Authentication |
| Content-Type  | string | application/json          |

#### Request Body

| Name          | Type    | Description                                                  |
| ------------- | ------- | ------------------------------------------------------------ |
| transactionId | integer | Transaction ID of successfully completed payment transaction |
| amount        | number  | Refund amount                                                |

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

```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 %}

#### Request example of the refund&#x20;

```javascript
{
    "transactionId": 8432820, 
    "amount": 700
}
```

APM Refund is asynchronous operations. After the refund is requested, the request is created and sent to the processing system. The refund execution time depends on the processing system.  When the refund is processed, the final status of the refund will be sent as a [Notification](#notifications).

## 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                 |
| bankArn           | String  | Optional | Bank ARN                                |

### 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;
* Make sure to include in the hash the complete request body, received in the notification.

#### HMAC value calculation and encoding example

```php
<?php
    # We use only several fields here as the example how to generate the hash. 
    # Make sure to use request body in raw format with all fields received in the notification.
    $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==
```

## Request Signature Validation

Merchants can ensure the integrity and authenticity of the requests they send to our system by using a signature validation method. Each request must include the `Content-HMAC` HTTP header, which contains the validation value (signature).&#x20;

#### How It Works:

* **HTTP Header:** Merchants must send a `Content-HMAC` header with each API request. This header contains the base64-encoded HMAC value used for validation.
* **Request Body:** The entire request body (the message) is used to generate the HMAC value.
* **HMAC Algorithm:** The HMAC value is calculated using the SHA256 algorithm.
* **Signature Key:** Merchants must use their signature key (available in their Back Office) as the key when generating the HMAC value.
* **Base64 Encoding:** The calculated HMAC value is then encoded using base64.

#### HMAC value calculation and encoding example:

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

#### Expected `Content-HMAC` Output:

The merchant should send the `Content-HMAC` value in the request header:

```
Content-HMAC: MzVkMzBlMTdmMmVkNGJkNjFhMzFmNTdhODU0ZGQwZTYwZGU5MDg5MDRiODYyMTAzZmI0ZDAzMjRiMWJmNmM3Mw==
```

## 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   |
