Create Facestamp Order

This endpoint is used to create a facestamp order

POST https://fuspay-kyc-ms-df741b092e53.herokuapp.com/api/v1/facestamp

The create facestamp order process requires an SMS OTP, which you are responsible for providing. Your implementation must adhere to the following request body specifications here

Request Body

Key
Type
Description

full_name

String

The full name of the user initiating the facestamp request.

email

String

The email of the user initiating the facestamp request.

phone

String

The phone number of the user initiating the facestamp request.

app_id

String

The app ID of the the face stamp order to be created.

callback_url

String

The callback url of the face stamp order to be created.

redirect_url

String

The redirect url of the face stamp order to be created.

user_reference

String

the reference ID of the user

create_otp_url

String

The create otp url

resend_otp_url

String

The resend otp url

verify_otp_url

String

The verify otp url

payment_reference

String

The payment reference

meta_data

Object

The object containing merchant_tag/label representing the specific merchant

Request Body Sample

{
    "full_name": "Timilehin Abodunrin",
    "email": "[email protected]",
    "phone": "2348168752312",
    "app_id": "657d86b4631b512164538ba4",
    "callback_url": "https://webhook.site/5f638aac-b0e2-4ff0-901d-8055ffafb692",
    "redirect_url": "https://webhook.site/5f638aac-b0e2-4ff0-901d-8055ffafb692", 
    "user_reference": "intrapay_ref_00111",
    "create_otp_url": "https://webhook.site/5f638aac-b0e2-4ff0-901d-8055ffafb692",
    "resend_otp_url": "https://webhook.site/5f638aac-b0e2-4ff0-901d-8055ffafb692",
    "verify_otp_url": "https://webhook.site/5f638aac-b0e2-4ff0-901d-8055ffafb692",
    "payment_reference": "qwertytt",
	"meta_data": {
		"merchant_tag": "qwerty"
	}
}

Response Body

{
	timestamp: new Date().toISOString(),
	event: "",
	order: "12345",
	status: "userData",
	meta_data: {
		facestamp_note: "",
		facestamp_status: "approved", //"init" | "approved" | "rejected"
		facestamp_fee: 2.5,
	},
	account: "6789"
	user_reference: "abc",
	first_name: 'Timi',
	last_name: 'Abodunrin',
	other_name: 'Timothy',
	phone: '2348113372866',
	email: '[email protected]',
	country: 'NGN',
};

Last updated