Basic Phone Number
Verify Phone Number
With Basic Phone Number Verification endpoint, you can rest assured that your customers’ phone numbers are accurate and legitimately belong to them. This endpoint uses the algorithms and database technology to verify phone numbers in real-time, ensuring that you only connect with legitimate users.
To use this endpoint, all you need to provide is your customer’s legit phone number.
TEST DATA
number: 08082838283
POST
{{URL}}/identitypass/verification/phone_number
Request Header
Key | Description |
---|---|
app-id | Your App ID |
x-api-key | Your Secret Key |
Request Body
Key | Description |
---|---|
number | Phone number |
Sample Response
{
"status": true,
"detail": "Verification Successfull",
"response_code": "00",
"data": {
"dateOfBirth": "1999-12-23",
"firstName": "test",
"surname": "test",
"middlename": "Test",
"phoneNumber": "08082838283"
}
}
Response Description
Response | Description |
---|---|
status | Indicates that the request was successful. |
detail | This field indicates the detail of the response. |
response_code | Represents the response code. |
data | An array containing the information received. |
dateOfBirth | The date of birth of the user, in the format YYYY-MM-DD. |
firstName | The first name of the user. |
surname | The last name of the user. |
middlename | The middle name of the user. |
phoneNumber | The phone number of the user. |
Updated over 1 year ago