Seamfix FRSC Service

The Drivers License Number Verification service is used to verify the authenticity of a driver's Licence Number by matching a License Number against the last name and date of birth.

📘

URL information

Base URL: https://app.verified.ng
URL: {{BASEURL}}/sfx-verify/v2/frsc

Request & Response

API Header
userid : xxxxx
api-key : xxxxx
Request ParameterFRSC
firstnameRequired
surnameRequired
phoneOptional
emailOptional
frscRequired
dobRequired
callbackURLRequired
Response ParameterTypeDescription
descriptionStringThis is a description of the response received.
statusStringThis is the status of the response. It can either be Verified, Not Verified or Pending.
referenceNoStringEvery response comes with a reference number. You are advised to save this number, this will be useful for when you get a response with Pending Status, as our callback request will come with the reference number.
verifiedBooleanThis is a boolean of true or false.

Samples

Request sample

{
    "firstname": "Ebong",
    "surname": "Ibokette",
    "phone": "08167396655",
    "email": "[email protected]",
    "frsc": "FFF11111AA76",
    "dob": "1993-11-06", 
    "callbackURL":"https://yoursite.com/callback"
}

Response sample

{
"description": "Successfully retrieved the status of the frsc verification",
"status": "VERIFIED",
"referenceNo": "VERNG|UVERIFY|FRSC|1562687877667",
"verified": true
}