API endpoints
- https://api.bisnode.fi/people/register-monitor/v2/register - PROD
- https://api-test.bisnode.fi/people/register-monitor/v2/register - TEST
API request
Parameter | Description | |
---|---|---|
id | Register ID | M |
M = Mandatory |
GET https://api-test.bisnode.fi/people/register-monitor/v2/register/{id}
API response
Element | Description |
---|---|
registerId | The register id |
registerName | The name of the register |
itemCount | Total count of the items in the register |
matchedItemCount | The count of the matched (identified) items in the register |
API request and response example
curl 'https://api-test.bisnode.fi/people/register-monitor/v2/register/181' -H 'x-api-key: ABC1234567890'
Successful API request returns results in JSON format.
{ "registerId": 181, "registerName": "Ab Hello Oy customer register", "events": [ { "id": 909, "typeId": 1, "typeName": "Upsert items", "timestamp": "2017-05-08T10:51:01.253Z" }, { "id": 912, "typeId": 5, "typeName": "Populated matching results", "timestamp": "2017-05-08T10:52:04.31Z" } ], "itemCount": 501299, "matchedItemCount": 491001 }
More detailed implementation guide for the API - read more »