External Verification (eKYC)
| Time | Status | User Agent | |
|---|---|---|---|
| Make a request to see history. |
URL Expired
The URL for this request expired after 30 days.
Notes:
- For country or source specific API documentation, please see here.
- Please verify that all mandatory fields as per the documentation linked above are provided in the API request.
Note: When fields are provided they will override field values derived from a document scan.
Examples
Check address:
{
"plugins": ["kyc"],
"firstName": "Jon",
"surName": "Hasselhoff",
"street": "101 Beach Highway",
"postalCode": "90210",
"state": "CA",
"city": "Beverly Hills",
"countryCode": "US"
}
Check email:
{
"plugins": ["kyc"],
"firstName": "Jon",
"surName": "Hasselhoff",
"email": "david.hasselhoff@email.com"
}
Check phone:
{
"plugins": ["kyc"],
"firstName": "Jon",
"surName": "Hasselhoff",
"phone": "+16504463444",
"street": "101 Beach Highway",
"postalCode": "90210",
"state": "CA",
"city": "Beverly Hills",
"countryCode": "US"
}
Check SSN (taxId):
{
"plugins": ["kyc"],
"firstName": "Jon",
"surName": "Hasselhoff",
"street": "101 Beach Highway",
"postalCode": "90210",
"state": "CA",
"city": "Beverly Hills",
"countryCode": "US",
"taxId": "123456789",
"dateOfBirth": "1980-06-01"
}
Full eKYC check:
{
"plugins": ["kyc"],
"firstName": "Jon",
"middleName": "Michael",
"surName": "Hasselhoff",
"street": "101 Beach Highway",
"postalCode": "90210",
"state": "CA",
"city": "Beverly Hills",
"countryCode": "US",
"phone": "+16504463444",
"email": "david.hasselhoff@email.com",
"taxId": "123456789",
"dateOfBirth": "1980-06-01"
}
plugins
array of strings
plugins
Allowed:
kyc
ADD string
firstName
string
The following special characters are not supported: ^±!@£$%&*_+¡€#¢§¶•ªº«<>?/;|=
surName
string
The following special characters are not supported: ^±!@£$%&*_+¡€#¢§¶•ªº«<>?/;|=
middleName
string
The following special characters are not supported: ^±!@£$%&*_+¡€#¢§¶•ªº«<>?/;|=
maternalSurname
string
The following special characters are not supported: ^±!@£$%&*_+¡€#¢§¶•ªº«<>?/;|=
string
street
string
streetNo
string
floor
string
apartment
string
postalCode
string
countryCode
string
ISO 3166-1 alpha-2 format
phone
string
Use E.164 format. Hyphens are optional
state
string
city
string
idNumber
string
idNumber1
string
gender
string
taxId
string
dateOfBirth
string
dlExpireAt
string
fullName
string
panNumber
string
Indian Permanent Account Number (PAN), format: AAAAANNNNA
district
string
District or Barangay (neighbourhood), used for Philippines KYC
idType
string
National ID type. Supported for Philippines KYC: SSS, TIN, GSIS
api-version
string
required
Defaults to 1.0
`200 OK
`400 Bad Request
Updated 3 months ago
ShellNodeRubyPHPPython
xxxxxxxxxx
curl --request POST \
--url https://demo-api.incodesmile.com/omni/externalVerification/ekyc \
--header 'accept: application/json' \
--header 'api-version: 1.0' \
--header 'content-type: application/json'
Click Try It! to start a request and see the response here! Or choose an example:
application/json
200400
Updated3 months ago