Create Merchant

Merchant creation endpoint. The virtual card API is a multi merchant system with a single partner being able to create multiple merchants.

POST https://vcard.fuspay.finance/api/v1/Partner/CreateMerchant

The virtual card API is a multi merchant system with a single partner being able to create multiple merchants. Each merchant is registered by passing their details and intrapay merchant ID to the create merchant endpoint. A merchant has to have a Intrapay merchant ID which links their account to the intrapay app that provides the pre-funded wallet which is debited for card creation and user KYC

Request Header

Name
Type
Description

Authorization

Bearer Token

Bearer token ${partner_secret_key}

Content-Type

Application/json

x-partner-id

xxxxxxxx

Your partner ID eg. p602xxx

Request body

Name
Type
Description

merchant_name

String

The name of the merchantto be created

merchant_email

String

The email of the merchant to be created

merchant_phone

String

The phone of the merchant to be created

merchant_country

String

The country of the merchant to be created

meta_data

Array

The merchant ID

{
	
	"merchant_name": "FusPay Demo",
	"merchant_email": "test@fuspay.com",
	"merchant_phone": "234800000000",
	"merchant_country": "Ghana",
	"meta_data": {
		"otp": "0000",
		"intrapay_merchant_id": "intrapay_merchan_id_0001"
		
	
	
}

Response body

{
    "success": true,
    "message": "Merchant created successfully",
    "data": {
        "merchant_id": "1732008798536"
    }
}

Last updated