Mali

Learn everything you need to know to make payouts in Mali with dLocal.

Market specifications

Take a look of all the information you need to make a payout.

Country reference Mandatory paramenters

Payment methods

Find all the information about payment methods capabilities.

Wallet transfers

Market specifications

Do you want to know more information about Cameroon's market? Go to the Expand Your Reach in Africa’s eCommerce Market article.

Country reference

country codecurrency codeamount decimals
MLXOF2

Mandatory parameters

Wallet transfers

Wallet transfer parametersB2CP2P
external_idYesYes
payment_method_idYesYes
flow_typeYesYes
purposeYesYes
countryYesYes
amountYesYes
currencyYesYes
beneficiary.first_nameYesYes
beneficiary.last_nameYesYes
beneficiary.phoneYesYes
beneficiary.instant_payment.typeYesYes
beneficiary.instant_payment.idYesYes
remitter.first_name-Yes
remitter.last_name-Yes
remitter.document.type-Yes
remitter.document.id-Yes
remitter.birth_info.date-Yes
remitter.address.street-Yes
remitter.address.city-Yes
remitter.address.country-Yes
remitter.nationality-Yes

Payment methods

Mali supports payouts via Mobile Money. Each method has specific required parameters and validations aligned with the local banking and telecom systems.

Use Mobile Money to send funds using mobile phone numbers tied to local e-wallets, accepted only from major operators.

Wallet transfers

Mandatory parameters

The table below outlines the required parameters for Wallet transfers.

Mandatory parameterDescription
external_idUnique payout identification at the merchant's end. Maximum 100 characters.
payment_method_idPayment method identifier. For wallet transfers, use INSTANT_PAYMENT.
flow_typePayout flow type. Valid values: B2C (Business to Consumer) or P2P (Person to Person).
purposePayout purpose code. For P2P, use REMITTANCES. See purpose codes reference.
countryCountry code. For Mali, use ML.
currencySource currency of the FX operation. For Mali, use XOF or USD. Payouts are typically paid in local currency to the beneficiary.
amountPayout amount in XOF. Use up to 2 decimal places.
beneficiary.first_nameBeneficiary's first name. Maximum 50 characters.
beneficiary.last_nameBeneficiary's last name. Maximum 50 characters.
beneficiary.phoneBeneficiary's phone number in E.164 format. Use +223 followed by 9 digits.
beneficiary.instant_payment.typeBeneficiary's wallet provider. Type of wallet being used: ORANGE or MOOV.
beneficiary.instant_payment.idBeneficiary's wallet identifier, typically the phone number.
remitter.first_nameRemitter's first name. Maximum 50 characters. Mandatory only for remittance (P2P).
remitter.last_nameRemitter's last name. Maximum 50 characters. Mandatory only for remittance (P2P).
remitter.document.typeType of identification document: ID for national identification number, PASS for passport. Mandatory only for remittance (P2P).
remitter.document.idRemitter's identification document or number. Maximum 45 characters. Mandatory only for remittance (P2P).
remitter.birth_info.dateRemitter's date of birth in ISO 8601 format (YYYY-MM-DD). Mandatory only for remittance (P2P).
remitter.address.streetRemitter's street address. Maximum 200 characters. Mandatory only for remittance (P2P).
remitter.address.cityRemitter's city. Maximum 40 characters. Mandatory only for remittance (P2P).
remitter.address.countryRemitter's country code in ISO 3166-1 alpha-2 format. Mandatory only for remittance (P2P).
remitter.nationalityRemitter's nationality. Use ISO 3166-1 alpha-2 format. Mandatory only for remittance (P2P).

Example request

{
  "external_id": "ML_B2C_001",
  "payment_method_id": "INSTANT_PAYMENT",
  "flow_type": "B2C",
  "purpose": "OTHER_SERVICES",
  "country": "ML",
  "amount": 1000.00,
  "currency": "XOF",
  "beneficiary": {
    "first_name": "Awa",
    "last_name": "Traore",
    "phone": "+22370811010",
    "instant_payment": {
      "type": "ORANGE",
      "id": "+22370811010"
    }
  },
  "notification_url": "https://thisisawebsite.net/payments"
}
{
  "external_id": "ML_P2P_002",
  "payment_method_id": "INSTANT_PAYMENT",
  "flow_type": "P2P",
  "purpose": "REMITTANCES",
  "country": "ML",
  "amount": 500.00,
  "currency": "XOF",
  "beneficiary": {
    "first_name": "Awa",
    "last_name": "Traore",
    "phone": "+22370811010",
    "instant_payment": {
      "type": "MOOV",
      "id": "+22370811010"
    }
  },
  "remitter": {
    "first_name": "Moussa",
    "last_name": "Diarra",
    "document": {
      "type": "ID",
      "id": "A12345678"
    },
    "birth_info": {
      "date": "1985-01-15"
    },
    "address": {
      "street": "123 Main Street, Bamako",
      "city": "Bamako",
      "country": "SN"
    },
    "nationality": "SN"
  },
  "notification_url": "https://thisisawebsite.net/payments"
}