Morocco payout

🧪

The Morocco corridor is still in beta so you might notice occasional instability as we fine-tune things. We’ll be rolling out updates regularly and your feedback is invaluable in helping us get it right!

Payment Account Types

The supported payment account type in Morocco is:

  • BANK_ACCOUNT

Bank Account

We support payouts to various banks in Morocco. To retrieve the most current list of supported banks, use the list banks endpoint.

Decimal Requirements

Payment Account TypeDecimals Allowed
BANK_ACCOUNT2

Transaction Limits

Payment Account TypeMinimum Amount (MAD)Maximum Amount (MAD)
BANK_ACCOUNT2080,000

Compliance Requirements

FieldRequirements
purposeRequired (please refer our list of pre-determined allowed values in Payouts)
sender.typeRequired
sender.nameRequired
sender.address.line1Required
sender.address.cityRequired
sender.address.postal_codeRequired
sender.address.countryRequired
sender.individual.dobRequired (with type INDIVIDUAL)
sender.individual.identity_document.typeRequired (with type INDIVIDUAL)
sender.individual.identity_document.countryRequired (with type INDIVIDUAL)
sender.individual.identity_document.numberRequired (with type INDIVIDUAL)
sender.individual.identity_document.expires_onRequired (with type INDIVIDUAL)

Sample payload

The samples below are specific to Morocco and based off the local regulations.

For a more Comprehensive list of fields, see the Payout resource.

Send to BANK_ACCOUNT

ℹ️

Info: The bank_id shown in this sample refers to a fictitious bank in our sandbox environment. It is intended for testing only and will not work in production. In production, retrieve the current list of supported banks and use a real bank_id for the destination country via the List banks endpoint.

{
  "amount": {
    "currency": "MAD",
    "value": "1250.00"
  },
  "payment_account": {
    "type": "BANK_ACCOUNT",
    "country": "MA",
    "holder": {
      "type": "INDIVIDUAL",
      "name": "John Doe"
    },
    "bank_account": {
      "bank_id": "bnk-2zx8DmlFYhXJQ9OlshzOn5iBVx2",
      "number": "0123456789"
    }
  },
  "purpose": "REMITTANCE",
  "sender": {
    "type": "INDIVIDUAL",
    "name": "Mario Rossi",
    "address": {
      "line_1": "Piazza del Colosseo",
      "line_2": "1",
      "line_3": "",
      "city": "Roma",
      "postal_code": "00184",
      "country": "IT"
    },
    "individual": {
      "dob": "1985-06-15",
      "identity_document": {
        "type": "PASSPORT",
        "country": "IT",
        "number": "YA0000000",
        "expires_on": "2030-01-01"
      }
    }
  }
}