getPersonInformation
TEST request - https://in.bisnode.ee/rest_dev/getPersonInformation
getPersonInformation
POST https://in.bisnode.ee/rest/getPersonInformation
Needed headers: Content-type: application/json
This endpoint allows you to get general person information such as:
* Personal code
* First name and last name
* Previous first name and last name (if exist)
* Death date (if exists)
* Personal address
Example Curl request:
curl -X POST -k -H 'Content-type: application/json' -i 'https://in.bisnode.ee/rest/getPersonInformation' --data '{
"token": "0c4386e0983540c97u8930de8570820f967827",
"code": "12345678900",
"language": "en"
}'
Query Parameters
language
string
2-letter language code. Must be "en", "et" or "ru". Default is "en".
token
string
Your 'access token' (API key).
code
string
Personal code.
{
"personal_code": "12345678900",
"last_name": "Karllson",
"first_name": "Karl",
"ex_last_name": "Blumberg",
"ex_first_name": "Karl",
"death_date": null,
"address": "Harju maakond, Tallinn, Lasnamäe linnaosa, Oksa 1-15"
}{
"error": "error",
"code": 400,
"message": "Code is mandatory"
}{
"error": "error",
"code": 401,
"message": "Token is wrong"
}{
"error": "error",
"code": 402,
"message": "Monthly requests limit exceeded"
}{
"error": "error",
"code": 403,
"message": "This request is not allowed for you"
}{
"error": "error",
"code": 404,
"message": "No such person"
}{
"error": "error",
"code": 409,
"message": "Something went wrong"
}{
"error": "error",
"code": 423,
"message": "Locked. Wait for previous request to complete"
}{
"error": "error",
"code": 500,
"message": "Internal Server Error"
}Last updated
Was this helpful?