API endpoints
- https://api.bisnode.fi/company/info/v2/responsiblepersons - production environment
- https://api-test.bisnode.fi/company/info/v2/responsiblepersons - test environment
API request parameters
Parameter | Description | |
---|---|---|
id | Business id or duns number | X |
X = Mandatory |
GET https://api-test.bisnode.fi/company/info/v2/responsiblepersons/{id}
API response
Element | Description |
---|---|
businessId | The company's business id |
dunsNumber | The company's duns number |
bisnodeId | |
socialSecurityNumber | |
dateOfBirth | |
firstNames | |
lastName | |
nationality | For descriptions see Codes API CodeKey = "COC" |
roleCode | For descriptions see Codes API CodeKey = "ROC" |
roleStartDate | |
roleEndDate |
API request and response example
curl 'https://api-test.bisnode.fi/company/info/v2/responsiblepersons/2014838-7' -H 'ticket: 1234567890ABC'
Successful request and the API return results in JSON format.
{ "businessId": "2014838-7", "dunsNumber": "539506084", "responsiblePersons": [ { "bisnodeId": "", "socialSecurityNumber": null, "dateOfBirth": "1965-06-23T00:00:00Z", "firstNames": "Ulla Karin Maria", "lastName": "Sandsjö", "nationality": "SE", "roleCode": "HVJ", "roleStartDate": "2016-11-09T05:01:46.64Z", "roleEndDate": null }, { "bisnodeId": "FI2101005084272", "socialSecurityNumber": null, "dateOfBirth": "1965-02-18T00:00:00Z", "firstNames": "Juha Pekka", "lastName": "Airaksinen", "nationality": "FI", "roleCode": "TJ", "roleStartDate": "2006-02-13T00:00:00Z", "roleEndDate": null }, { "bisnodeId": "", "socialSecurityNumber": null, "dateOfBirth": "1976-09-02T00:00:00Z", "firstNames": "Patrik Lennart", "lastName": "Edvinsson", "nationality": "SE", "roleCode": "HVJ", "roleStartDate": "2017-06-22T00:00:00Z", "roleEndDate": null }, { "bisnodeId": "", "socialSecurityNumber": null, "dateOfBirth": "1973-09-28T00:00:00Z", "firstNames": "Hans Magnus", "lastName": "Silfverberg", "nationality": "SE", "roleCode": "HPJ", "roleStartDate": "2016-01-14T05:04:46.633Z", "roleEndDate": null } ], "responsiblePersonHistory": [ { "bisnodeId": "", "socialSecurityNumber": null, "dateOfBirth": null, "firstNames": "Karl Peter", "lastName": "Bergson", "nationality": "SE", "roleCode": "HVJ", "roleStartDate": "2015-01-27T14:01:23.18Z", "roleEndDate": "2017-06-22T00:00:00Z" } ] }