Person code validator

TEST request - https://in.bisnode.ee/rest_dev/getPersonCodeValidator

getPersonCodeValidator

POST https://in.bisnode.ee/rest/getPersonCodeValidator

Needed headers: Content-type: application/json This endpoint allows you to validate a personal code and extract personal information from it such as: * Country empty if Estonia or Lithuania (identical codes) - country can`t be detected Latvia (LVA) Finland (FIN) * Birthday empty if Latvia - can`t be detected * Gender: Male (M) Female (F) If response is empty array [ ] - this means your code is invalid. Example Curl request: curl -X POST -k -H 'Content-type: application/json' -i 'https://in.bisnode.ee/rest/getPersonCodeValidator' --data '{ "token": "0c43592834623946u464e963570304596", "code": "11111111111" }'

Query Parameters

NameTypeDescription

code

string

Personal code.

{
    "gender": "F",
    "birthdate": "1990-06-15"
}
or
{
    "birthdate": "1980-10-03",
    "country": "LVA"
}
or
{
    "gender": "F",
    "birthdate": "1977-04-26",
    "country": "FIN"
}
or
[]

Last updated