Banks of Laos

Overview

Banks of Laos is a payment method that allows customers to perform payouts in Laos. With Banks of Laos, you can perform payouts by using Gate.

Download the logo in vector format here.

Payment method type Online banking
Countries and regions Lao People's Democratic Republic
Payment currencies LAK
Currency conversion On the Monetix side
Purchases
Payouts
COF payments
Full refunds
Partial refunds
Chargebacks
Special considerations
Onboarding and access fee Refer to your key account manager at Monetix.

Interaction diagram

Payment processing by using the Banks of Laos payment method requires the merchant web service, one of the Monetix interfaces, and the Monetix payment platform, as well as one of the bank services which supports this payment method.

Operations support

Interfaces Amounts, LAK Times
Payment Page Gate Dashboard minimum maximum basic threshold
Payouts 94,000.00 200,000,000.00 * *

* Refer to your Monetix Key Account Manager for the information.

You can check the payment amount limits in your project by using Dashboard. To check your payment amount limits, go to Dashboard, select the Projects section and click the Payment methods tab.

Processing scenarios

In the Banks of Laos method, to make a payout, you need to notify the customer via the merchant web service.

Figure 1. Payout by using Gate

The sections that follow provide more information about what you need to perform payments and how you can analyze payments and operations information.

Supported banks

Payments through the Banks of Laos method are carried out through the banks that support the method. To initiate a payout by using Gate, you use bank identifiers.

The tables below provide information about supported banks.

Table 1. List of banks
Bank ID
APB 63581
BCEL 60881
BIC 63571
IB 63591
JDB 63322
LDB 63561
LVB 63551

Payout by using Gate

General information

To perform a payout with the Banks of Laos method, the merchant's web service sends a request with all the required parameters and signature to the Monetix URL, and accepts the callback with the payment result.

The complete sequence of the payout process is provided below.

Figure 2. Payout by using Gate
  1. A customer initiates a payout through the Banks of Laos payment method.
  2. The merchant's web service sends the request for processing the payout by using Gate to the Monetix URL.
  3. Gate redirects the request to the Monetix payment platform.
  4. The payment platform performs the initial request processing that includes validation whether all the required parameters are available and signature is correct.
  5. The payment platform sends the response with the request receipt confirmation and validation result to the web service. For more information about the response format, see Response structure.
  6. The payment platform redirects the payout request to the bank service.
  7. The bank service processes the payout.
  8. The bank service sends the result notification to the payment platform.
  9. The payment platform sends a callback with the payment result to the web service.
  10. The web service sends the payment result to the customer.

The sections that follow discuss in more details the request format and the Gate parameters to use in the Banks of Laos payment method and provide the information on the format of callbacks with payout results. For the general information on how to use the Gate API, see API Description.

Request format

There are several things you must consider when using payout requests in the Banks of Laos method:

  1. You initiate a payout by sending a payout request to the /v2/payment/banks/laos/payout endpoint by using the HTTP method POST. This endpoint belongs to the following group of endpoints for the online banking payments: /v2/payment/banks/{payment_method}/payout.
  2. The following objects and parameters must be specified in any request:
    • general—object with general request identification information:
      • project_id—the project ID obtained from Monetix
      • payment_id—payment ID unique within the project
      • signature—signature created after you specify all the required parameters. For more information about signature generation, see Signature generation and verification.
    • customer—object with customer information:
      • id—the unique ID of the customer within your project
      • ip_address—customer device IP
      • phone—customer phone
      • email—customer email
    • account—object with customer account information:
      • number—customer account number
      • customer_name—customer full name
      • bank_id—bank ID
    • payment—object with payout information:
      • amount—payout amount in minor currency units without any decimal point or comma except for cases where the currency does not have any minor currency units. If the currency has no minor units (that is, the number of digits for minor currency units is zero), then you must set this parameter to the amount in the major currency units. For the information on whether the currency has any minor units, see Currency codes.
      • currency—code of payout currency in the ISO-4217 alpha-3 format
  3. If required, you can also add any optional parameters Gate supports.

Here is an example of the data from a payout request:

Figure 3. Example of payout request data
{
    "general": {
        "project_id": 1234,
        "payment_id": "payment_47",
        "signature": "PJkV8ej\/UG0Di8hTng6JvC7vQsaC6tajQVVfBaNIipTv+AWoXW\/9MTO8yJA=="
    },
    "customer": {
        "id": "customer_123",
        "ip_address": "198.51.100.47",
        "phone": "123456789",
        "email": "johnsmith@email.com"
    },
    "account": {
        "number": "123456",
        "customer_name": "John Smith",
        "bank_id": 123456
    },
    "payment": {
        "amount": 50000000,
        "currency": "LAK"
    }
}

Callback format

The Banks of Laos method uses the standard format for callbacks to deliver payout results. For more information about callbacks, see Callbacks in Gate.

The following is the example of a callback with an information about successful 500,000.00 LAK payout in the 1234 project.

Figure 4. Example of data from a successful payout callback
{
    "project_id": 1234,
    "payment": {
        "id": "payment_48",
        "type": "payout",
        "status": "success",
        "date": "2022-03-25T11:08:45+0000",
        "method": "Banks of Laos",
        "sum": {
            "amount": 50000000,
            "currency": "LAK"
        },
        "description": ""
    },
    "operation": {
        "id": 29,
        "type": "payout",
        "status": "success",
        "date": "2022-03-25T11:08:45+0000",
        "created_date": "2022-03-25T11:08:05+0000",
        "request_id": "9e32835fb27907e0b08569d7d150e387a16a80e336c5117242b5cf60a4e17839",
        "sum_initial": {
            "amount": 50000000,
            "currency": "LAK"
        },
        "sum_converted": {
            "amount": 50000000,
            "currency": "LAK"
        },
        "code": "0",
        "message": "Success",
        "provider": {
            "id": 12345,
            "payment_id": "123abc123-123",
            "auth_code": ""
        }
    },
    "signature": "U7HQO7ToISZhMPKdM4Xr4DSX2UuHp99rHrtaxkUKQtoYzFvoB3cs9CRd4xeYG2Q=="
}

The following is the example of a callback for a declined payout.

Figure 5. Example of data from a declined payout callback
{
    "project_id": 1234,
    "payment": {
        "id": "payment_48",
        "type": "payout",
        "status": "decline",
        "date": "2022-03-25T11:20:30+0000",
        "method": "Banks of Laos",
        "sum": {
            "amount": 50000000,
            "currency": "LAK"
        },
        "description": ""
    },
    "operation": {
        "id": 29,
        "type": "payout",
        "status": "decline",
        "date": "2022-03-25T11:20:30+0000",
        "created_date": "2022-03-25T11:19:53+0000",
        "request_id": "fff3d5f8d5d31bc460b68b57dc63f4b482e906eb",
        "sum_initial": {
            "amount": 50000000,
            "currency": "LAK"
        },
        "sum_converted": {
            "amount": 50000000,
            "currency": "LAK"
        },
        "code": "20000",
        "message": "General decline",
        "provider": {
            "id": 12345,
            "payment_id": "123abc123-123",
            "auth_code": ""
        }
    },
    "signature": "J7W15rkqrLzTCD4HkoM4qoEnlVlf155QSlXJKR4m8C4z2iFYv58P4VnHANu445/jmY+g=="
}

Related topics

The following topics might be useful when implementing payments through Gate:

Payout by using Dashboard

To make a payout through Dashboard, the merchant sends a request and receives a notification with the request processing result. There are two ways to initiate payouts through Dashboard:
  • single payout—you specify the currency and amount for a payout available for this method and fill in all the fields required for the selected payment method on the Dashboard pages.
  • as a part of a mass payment—all the parameters are specified in a CSV file. Refer to the Payouts by using Gate section for the parameters required by your payment method.

Information about completed payouts is available for viewing in the Payments and Manual Payments sections of Dashboard.

For more information about payout processing by using Dashboard, see Performing payouts.

Analysis of payments results

As with other payment methods Monetix offers, when using this method, you have several options to analyze the information about payments and operations.

You can load and analyze all the necessary information in Dashboard (dash-light.trxhost.com), for instance you can use the analytic panels in the Analytics section for this purpose.

Also, you can export the information for further analysis by using third party analytical tools. The following options are available:

  • Dashboard allows you to download reports in CSV format by using the tools in the Reports section. You can perform export as a one-time or regular download of data to your local computer.
  • Data API allows you to have payment information exported in JSON format and delivered to a URL you specify. The payment information is exported by means of sending requests to the /operations/get endpoint.

If you have any further questions regarding payment data analysis, contact Monetix technical support.