Banks of Myanmar

Overview

Banks of Myanmar is a payment method that allows customers to perform payouts by using online banking in Myanmar. With Banks of Myanmar, you can perform payouts by using Gate and Dashboard.

Download the logo in vector format here.

Payment method type Online banking
Countries and regions Myanmar
Payment currencies MMK
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 Myanmar payment method requires merchant web service, one of Monetix interfaces, and the Monetix payment platform, as well as one of the bank services which supports this payment method.

Operations support

Interfaces Amounts, MMK Times
Payment Page Gate Dashboard minimum maximum basic threshold
Payouts 17,000.00 20,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 Myanmar 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 Myanmar method are carried out through the banks that support the method. To initiate payouts by using Gate, you use bank identifiers.

The tables below provide information about the banks supported in this payment method.

Table 1. List of banks
Bank ID
Ayeyarwady Bank (AYA Bank) (Old) 63601
Ayeyarwady Bank (AYA Bank) (Special) 63611
Co-operative Bank (CB Bank) (Old) 63621
Co-operative Bank (CB Bank) (Special) 63631
Kanbawza Bank (Myanmar) 146
Yoma Bank (Old) 63641
Yoma Bank (Special) 63651

Payout by using Gate

General information

To perform a payout with the Banks of Myanmar method, 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 Myanmar 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 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 Myanmar 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 Myanmar method:

  1. You initiate a payout by sending a payout request to the /v2/payment/banks/myanmar/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 number
      • email—customer email address
    • 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 in the Banks of Myanmar method.

Figure 3. Example of the data from a payout request
{
    "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": 5000000,
        "currency": "MMK"
    }
}

Callback format

The Banks of Myanmar 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 50,000.00 MMK payout in the 1234 project.

Figure 4. Example of the 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 Myanmar",
        "sum": {
            "amount": 5000000,
            "currency": "MMK"
        },
        "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": 5000000,
            "currency": "MMK"
        },
        "sum_converted": {
            "amount": 5000000,
            "currency": "MMK"
        },
        "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 the 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 Myanmar",
        "sum": {
            "amount": 5000000,
            "currency": "MMK"
        },
        "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": 5000000,
            "currency": "MMK"
        },
        "sum_converted": {
            "amount": 5000000,
            "currency": "MMK"
        },
        "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.