Create User
User creation endpoint
POST
https://vcard.fuspay.finance/api/v1/Merchant/CreateUser
Users will have to perform kyc before they can start using card.
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_id
String
ID of the merchant from intrapay.
user_id
String
ID of user from your system
full_name
String
the full name of user
String
the email of the user
phone
String
the phone number of the user
{
"merchant_id": "C00012",
"user_id": "U0001",
"full_name": "FusPay Demo",
"email": "[email protected]",
"phone": "234806464212"
}
// first response if the user is yet to do KYC
{
"error": true,
"message": "Please start user kyc process",
"data": "https://kyc.fuspay.finance/verification/individual/678fd168e4d8223cf207fc9c"
}
Response body
{
"success": true,
"message": "User created successfully",
"data": {
"merchant_id": "1730000000000_intra_merchant_900000",
"user_id": "66bded7c0aed078900000000"
}
}
Last updated