Fuspay
WebsiteSupportDemo Meeting
  • Overview
    • Welcome
  • API ONBOARDING
    • Introduction
    • Partner Onboarding
    • Regenerate Partner Keys
    • IP Check & Whitelisting
  • API Onboarding
  • Authentication
    • Swap, Collection, & P2P Automation
  • Webhook Validation & Request Integrity
  • Currency Swap
    • Introduction
    • Authentication
      • Partner Onboarding Endpoints
      • Partner Activate Endpoint
      • Regenerate Partners Public & Private Keys
      • Digital Signature
    • User KYC
      • Create KYC
      • Verify KYC Status
      • Reconciliation
      • Post KYC Data
    • Exchange Rate
    • Buy
      • Create Order
      • Events
    • Sell
      • Create Order
      • Events
    • Transaction Resolution
      • Overview
      • Log Issue
      • Check Issue Status
    • Transaction Records
      • Pending Transaction
      • Get Single Order Endpoint
      • Get Multiple Order Endpoint
      • Sell/Payout Verification Endpoint
    • Provider/Bank Codes
  • Virtual card
    • Introduction
      • Getting Started
        • Partner Onboarding
        • Partner Activate Endpoint
    • Authentication
    • Partner
      • Create Merchant
      • List of Merchants
    • Merchant
      • Create User
      • Verify User KYC Status
      • List Users
    • User
      • Create Card
      • Fetch Cards
      • Get Card Details
    • Card
      • Fund Card
      • Freeze Card
      • Delete Card
    • Payments
      • Withdraw From Card
      • Withdrawal History
    • Transactions
      • Card Transactions
      • Export Card Transactions
      • Filter Card Transactions
    • Wallet
      • Merchant Wallet Balance
      • Card Wallet Balance
  • Collection and payout
    • Introduction
    • Onboarding
    • Getting Started for Partner
      • Partner Onboarding Endpoints
      • IP Capture & Whitelisting
      • Regenerate Partners Pub/Priv Keys
    • Getting Started for Merchant
    • Collection
      • Digital Signatures
      • Collection (GHS, KHS, ZAR)
      • Collection (Virtual Account-NGN )
      • Fetch Order
      • Assigning Virtual Accounts
        • Get Available Assignable Virtual Account
        • Check if specific account is available for use
        • Create Order- using Available Virtual Account from your Account Pool
        • Cancel Order
      • Get Mobile Money Providers
    • Payout
      • Account verification
      • Payout
      • Payout Status
      • Crypto Withdrawal
        • Wallet Balance
        • Withdrawal Payout
        • Get Withdrawal Payout Fee
      • Bank and Bank Codes
    • Transaction History
      • Get Transaction Records
  • P2p Automation
    • Integration Journey (API-Dashboard)
  • Payment and Utilities
    • Introduction
      • Sign Up
      • Compliance
      • Create an App
      • Configure App
    • Authentication
    • User Onboarding
    • Error Handling
    • Plugin (Frontend)
      • Integrating Finswich checkout via NPM or Yarn
      • Integrating the Finswich Checkout on your Vanilla Javascript app
      • Steps for integrating Finswich Checkout via Flutter
      • Pseudocode for Integrating Finswich Checkout in Application (Native iOS & Android)
    • Services (Backend)
      • Inter-wallet Transfer
      • Bank Transfer
      • Wallet Funding
      • Utility Purchases
  • KYC As A Service
    • Introduction
    • App Registration Endpoint
    • App Activate/Verify Endpoint
    • Request Verification Token
    • KYC (Individual)
      • Get KYC Types
      • Create KYC Request
      • Get Verification Status and User's Data
      • Create order with meta data
      • Migrate
    • KYC (Business)
      • Get KYC Types
      • Create KYC Request
      • Get Verification Status and User's Data
    • Face Stamp
      • Create Facestamp Order
      • Create OTP
      • Verify OTP
      • Post Transaction Data
    • KYC(Transactional)
    • Callbacks (Webhook Responses)
Powered by GitBook
On this page
  • Request Body
  • Request Body Sample
  • Response Body
  1. KYC As A Service
  2. Face Stamp

Create Facestamp Order

This endpoint is used to create a facestamp order

PreviousFace StampNextCreate OTP

Last updated 3 months ago

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

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',
};
here