Moniepoint · Schema

Monnify Reserved Account

Schema for a Monnify Reserved Account — a permanent NUBAN virtual account allocated to a customer for inbound bank-transfer collections. Returned by /api/v2/bank-transfer/reserved-accounts.

AfricaNigeriaPaymentsBankingFintechAcquiringPOSCollectionsDisbursementsVirtual AccountsDirect DebitBills PaymentSMBWorking CapitalUnicorn

Properties

Name Type Description
accountReference string Merchant-supplied unique reference.
accountName string Display name used on bank statements.
currencyCode string
contractCode string
customerEmail string
customerName string
bvn string
nin string
status string
restrictPaymentSource boolean
allowedPaymentSources object
accounts array One NUBAN per preferred bank.
incomeSplitConfig array
limitProfileCode string
dateCreated string
View JSON Schema on GitHub

JSON Schema

monnify-reserved-account-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.com/schemas/moniepoint/monnify-reserved-account-schema.json",
  "title": "Monnify Reserved Account",
  "description": "Schema for a Monnify Reserved Account — a permanent NUBAN virtual account allocated to a customer for inbound bank-transfer collections. Returned by /api/v2/bank-transfer/reserved-accounts.",
  "type": "object",
  "properties": {
    "accountReference": { "type": "string", "description": "Merchant-supplied unique reference." },
    "accountName": { "type": "string", "description": "Display name used on bank statements." },
    "currencyCode": { "type": "string", "example": "NGN" },
    "contractCode": { "type": "string" },
    "customerEmail": { "type": "string", "format": "email" },
    "customerName": { "type": "string" },
    "bvn": { "type": "string", "minLength": 11, "maxLength": 11 },
    "nin": { "type": "string", "minLength": 11, "maxLength": 11 },
    "status": { "type": "string", "enum": ["ACTIVE", "INACTIVE", "DEALLOCATED"] },
    "restrictPaymentSource": { "type": "boolean" },
    "allowedPaymentSources": {
      "type": "object",
      "properties": {
        "bvns": { "type": "array", "items": { "type": "string" } },
        "accountNumbers": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "accountNumber": { "type": "string" },
              "bankCode": { "type": "string" }
            }
          }
        },
        "accountNames": { "type": "array", "items": { "type": "string" } }
      }
    },
    "accounts": {
      "type": "array",
      "description": "One NUBAN per preferred bank.",
      "items": {
        "type": "object",
        "properties": {
          "bankCode": { "type": "string" },
          "bankName": { "type": "string" },
          "accountNumber": { "type": "string" },
          "accountName": { "type": "string" }
        }
      }
    },
    "incomeSplitConfig": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "subAccountCode": { "type": "string" },
          "feePercentage": { "type": "number" },
          "splitPercentage": { "type": "number" },
          "feeBearer": { "type": "boolean" }
        }
      }
    },
    "limitProfileCode": { "type": "string" },
    "dateCreated": { "type": "string", "format": "date-time" }
  },
  "required": ["accountReference", "accountName", "currencyCode", "customerEmail", "status"]
}