Create order with meta data
This endpoint helps KYC merchant tag each order when using the system as a multimerchant system. Tagging each order allows to separate user data across different merchants.
POST
https://fuspay-kyc-prod-df741b092e53.herokuapp.com/order/meta-data
Name
Type
Description
full_name
string
full name of the user.
string
email of the user.
phone
string
phone number of the user.
kyc_type
string
the kyc type e.g individual.
callback
string
the webhook callback.
redirect
string
the url you are redirecting to.
reference
string
the user reference id.
meta_data
object
An object containing the metadata tag. The metadata tag contains the tag of the merchant attached to the data
Request Body sample
{
"full_name": "Timilehin Abodunrin",
"email": "[email protected]",
"phone": "2348113372866",
"app": "675823c1200bbd9e32e2f2ca",
"kyc_type": "Individual",
"callback": "https://webhook.site/aa339fc2-ea12-4ad4-96b8-d88a5742310c",
"redirect": "https://custom-webhook-app-8b6d54acde1c.herokuapp.com",
"reference": "intrapay_ref_1234",
"meta_data": {
"merchant_tag": "KYC App"
}
}
Response Body
Last updated