getManagementBoard
TEST request - https://in.bisnode.ee/rest_dev/getManagementBoard
getManagementBoard
POST
https://in.bisnode.ee/rest/getManagementBoard
Needed Headers: Content-type: application/json
This endpoint allows you to get information about current and previous members of management board, company representation rights.
Example Curl request:
curl -X POST -k -H 'Content-type: application/json' -i 'https://in.bisnode.ee/rest/getManagementBoard' --data '{
"token": "0c725874e737c8195de547f67692d8b976726561",
"reg_code": "10117826",
"country": "EST",
"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).
reg_code
string
Company registration number.
country
string
3-letter country code "EST" or "LVA". Default is "EST".
[
{
"role": "Management board member",
"role_code": "JUHL",
"start_date": "2019-05-14",
"end_date": null,
"created_at": "2019-05-15 13:15:46",
"updated_at": "2019-05-23 13:14:40",
"active": "active",
"on_card": true,
"code": "11111111111",
"person_birth_date": "1955-05-11",
"person_gener": "M",
"country": "EST",
"name": "Karl Karll",
"type": "Physical person"
},
{
"role": "Management board member",
"role_code": "JUHL",
"start_date": "2007-07-27",
"end_date": "2010-07-07",
"created_at": "2018-01-12 17:12:33",
"updated_at": "2018-01-12 17:12:33",
"active": "inactive",
"on_card": true,
"code": "11111111111",
"person_birth_date": "1966-06-16",
"person_gener": "M",
"country": "EST",
"name": "Ants Antss",
"type": "Physical person"
}
]
Last updated
Was this helpful?