Page cover

Create Card

This endpoint allows you to submit a request for a physical card for your customer. A request ID is returned to keep track of the card request

To create/request a physical card, you are required to create a tier 2 (full KYC) account for your customer.

POST {{base_url}}/business/debitcard-issuance

Headers

Name
Type
Description

Authorization*

String

SECRET_KEY

Request Body

Name
Type
Description

customerid*

Sting

Tracking ID returned from the create customer endpoint

cardtype*

String

Specify the type of card requesting for as debit or credit

photocustomised*

Boolean

Specify if the card should be cutomize with photo or plain. Required value should be true or false

photo

String

A valid url of the customer photo. Only required if the photocustomised value above is true

nin*

String

Customer NIN e.g 21311266613

Take a look at how you might do this:

curl --location '{{base_url}}/business/debitcard-issuance' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer SECRET_KEY' \
--data-raw '{
    "customerid": "891106211211"
    "cardtype": "debit",
    "nin": "21121212029",
    "photocustomised": false,
    "photo": ""
}'

Sample response

{
    "status": true,
    "responsecode": "01",
    "message": "Card Request Successfully Submitted for John Doe",
    "data": {
        "requestid": "1fc0e17f-31ea-c9ea-0230-770e7c7bf876",
        "customerid": "BLD19661746"
    }
}

Last updated

Was this helpful?