Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Monnify allows you Reserve an Account for your customers who you send invoices to. You can then attach these accounts to invoices being generated so the customer always receives the same account number for any invoice he receives.

These accounts are slightly different from regular customer reserved accounts as customers cannot pay into these accounts until they are attached to an invoice. Basically, the account number is only active when attached to an invoice.

NB
Info
title

Only one invoice can be attached to a Reserved Account at a time.

Reserving An Account (Invoice)

To create a reserved account invoice, send a request to the reserved account endpoint.

title
Info

This endpoint is protected with OAuth 2.0 Bearer token

Endpoint

...

URL: {{baseurl}}/api/v1/bank-transfer/reserved-accounts

This endpoint is protected by OAuth 2.0 Bearer Token

Here is a sample request and response

...

HTTP Method: POST

Info

The {{base url}} for test is https://sandbox.monnify.com but when you go live, it changes to the live url

Sample Reserve Account (Invoice) Request

Code Block
languagejson
{
    "contractCode":"166813296212",
    "accountName":"Jane Doe",
    "currencyCode":"NGN",
    "accountReference": "janedoe12233",
    "customerEmail": "janedoe@gmail.com",
    "customerName": "Jane Doe",
    "reservedAccountType": "INVOICE"
}
Code Block
title

Sample Reserve Account (Invoice) Response

Code Block
languagejson
{
    "requestSuccessful": true,
    "responseMessage": "success",
    "responseCode": "0",
    "responseBody": {
        "contractCode": "166813296212",
        "accountReference": "janedoe12233",
        "accountName": "Jane Doe",
        "currencyCode": "NGN",
        "customerEmail": "janedoe@gmail.com",
        "customerName": "Paschal Ezenwankwo",
        "accountNumber": "1122334455",
        "bankName": "GTBank",
        "bankCode": "058",
        "reservationReference": "KN5PYJ78PLSX7ET",
        "reservedAccountType": "INVOICE",
        "status": "INACTIVE",
        "createdOn": "2019-07-18 14:46:12.591"
    }
}

Info

The status is INACTIVE because the reserved account is of type INVOICE and no invoice is currently attached to the account. Once an invoice is attached, the account becomes active.


Attaching a Reserved Account to an Invoice

To attach an invoice to a Reserved Account, you simply need to include the accountReference of the reserved account in the create invoice request.

To create a reserved account invoice, send a request to the reserved account endpoint.

Info
titleEndpoint
POST:

This endpoint is protected with OAuth 2.0 Bearer token

Endpoint URL: {{baseurl}}/api/v1/invoice/create

HTTP Method: POST

Info

The {{base url}} for test is https://sandbox.monnify.com

/api/v1/invoice/create

This endpoint is protected with Basic Authentication

but when you go live, it changes to the live url

When the request is sent, an account number will be returned. The account number that will be returned will be the account number that was reserved using the accountReference specified.

Create Invoice Request

Code Block
languagejs
themeMidnight
titleCreate Invoice Request
json
{
    "amount": "999",
    "invoiceReference": "1838913182",
	"accountReference": "janedoe12233",
    "description": "test invoice",
    "currencyCode": "NGN",
    "contractCode": "38238193818",
    "customerEmail": "janedoe@gmail.com",
    "customerName": "Jane Doe",
    "expiryDate": "2019-10-30 12:00:00"
}


Create Invoice Response

Code Block
languagejs
themeMidnight
titleCreate Invoice Response
json
{
    "requestSuccessful": true,
    "responseMessage": "success",
    "responseCode": "0",
    "responseBody": {
        "amount": 999,
        "invoiceReference": "1838913182",
        "invoiceStatus": "PENDING",
        "description": "test invoice",
        "contractCode": "4876165459",
        "customerEmail": "janedoe@gmail.com",
        "customerName": "Jane Doe",
        "expiryDate": "2019-10-18 14:48:00",
        "createdBy": "MK_TEST_VR7J3UAACH",
        "createdOn": "2019-08-27 23:14:29",
        "checkoutUrl": "https://sandbox.sdk.monnify.com/checkout/MNFY|20190827231429|000340",
        "accountNumber": "1122334455",
        "accountName": "Jane Doe",
        "bankName": "GTBank",
        "bankCode": "058"
    }
}


Once the invoice is generated, the customer can pay by simply doing a transfer to the virtual account number generated or via their debit card using the checkout URL. Once the customer pays, we will notify you via your Webhook URL. 

Info
title

Webhook URL

Need help on how to implement your webhook url? Click here

...

Field Reference

(M) indicates fields that are mandatory in the request body

Field

Description

amount (M)

The amount to be paid by the customer

invoiceStatus

Status of the invoice. Can be either "PAID", "PENDING" or "EXPIRED"

currencyCode (M)

The currency of the transaction being initialized. "NGN"

invoiceReference (M)

Merchant's Unique reference for the invoice.

accountReference (M)

Your unique reference used to identify this reserved account

customerName (M)

Full name of the customer

customerEmail (M)

Email address of the customer

apiKey (M)

Merchant's API Key (Can be found on the Monnify dashboard)

contractCode (M)

Merchant's contract code (Can be found on the Monnify dashboard)

description (M)

Description for the transaction. Will be used as the account name for bank transfer

paymentsd

payments

expiryDate (M)

Expiry date for the invoice. After this date, the customer will no longer be able to pay for that invoice. Format is YYYY-MM-DD HH:MM:SS

checkoutUrl 

A URL which can be used to display the Monnify payment interface where the customer can then pay for the invoice via bank transfer or card. This is especially useful for card transactions as the account number can and SHOULD be displayed on the invoice directly.

accountNumber

The virtual account number generated for the invoice. This is the account number the customer can transfer to, to pay this invoice

accountName

The name that will be displayed to the customer when he performs name enquiry on the virtual account. Please note there may be Prefixes

bankName

The name of the bank where the virtual account number was generated. The customer will be expected to select this bank when doing the bank transfer

bankCode

The bank code of the bank where the virtual account number was generated

Filter by label (Content by label)
showLabelsfalse
showSpacefalse
cqllabel in ( "invoicing" , "invoicing-api" , "authentication" , "reserve-account-api" )