API endpoints
- https://api.bisnode.fi/company/info/v2/collectionactions- production environment
- https://api-test.bisnode.fi/company/info/v2/collectionactions- 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/collectionactions/{id}
API response
Element | Description |
---|---|
businessId | Company's business id |
collectionActionDate | Company's collection action date |
amount | Collected amount |
numberOfInvoices | Number of invoices |
incidentId | Incident id |
remarkCode | Remark code |
collectionActionDueDate | Collection action due date |
collectionActionPaidDate | Collection action paid date |
collectingCompany | Collecting Company |
curl 'https://api-test.bisnode.fi/company/info/v2/collectionactions/2014838-7' -H 'x-api-key: 1234567890ABC'
Successful request and the API return results in JSON format.
{ "businessId": "2014838-7", "dunsNumber": "539506084", "bondNotices": [ { "collectionActionDate": "2017-09-12T00:00:00Z", "amount": 994.82, "numberOfInvoices": 2, "incidentId": "T64178301", "remarkCode": null, "collectionActionDueDate": "2017-07-12T00:00:00Z", "collectionActionPaidDate": null, "collectingCompany": "Lindorff Oy" } ] }