GET
/
api
/
v1
/
kyc
/
phone_number
/
basic
curl --request GET \
  --url https://api.dojah.io/api/v1/kyc/phone_number/basic \
  --header 'AppId: <appid>' \
  --header 'Authorization: <api-key>'
{
  "entity": {
    "msisdn": "2348038820268",
    "firstName": "TEMI",
    "MiddleName": null,
    "lastName": "ADEBAYO",
    "email": "adebayotemi@gmail.com",
    "dateOfBirth": "",
    "address": "",
    "addressCity": "",
    "addressState": "",
    "gender": "Male"
  }
}
AppId
string
required

Application ID from dashboard

Query parameter

phone_number
string
required

Phone number to query

RESPONSES

200
json

json

400
Object
401
Object
{
  "entity": {
    "msisdn": "2348038820268",
    "firstName": "TEMI",
    "MiddleName": null,
    "lastName": "ADEBAYO",
    "email": "adebayotemi@gmail.com",
    "dateOfBirth": "",
    "address": "",
    "addressCity": "",
    "addressState": "",
    "gender": "Male"
  }
}

Was this page helpful?