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
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": "[email protected]",
"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