Download OpenAPI specification:
This reference provides a comprehensive overview of the Consumer Intelligence API endpoints for accessing and subscribing to person data and related statistical analytical data.
The API follows REST principles, and uses OAuth 2.0.
ℹ️ Getting started
New to the API? Explore our guides to learn how to make your first API calls.
We provide multiple environments, each with unique data access policies, and live/mocked persons.
Environments are isolated from each other. Client credentials are tied to a specific environment and cannot be reused across environments.
Features the latest stable software, live persons, and strict data access controls.
Name | URL |
---|---|
API | https://api.bisnode.com/consumer-intelligence/v3 |
OAuth Token | https://login.bisnode.com/as/token.oauth2 |
Includes the latest stable software and mocked persons.
Name | URL |
---|---|
API | https://sandbox-api.bisnode.com/consumer-intelligence/v3 |
OAuth Token | https://login.bisnode.com/sandbox/v1/token.oauth2 |
The Consumer Intelligence API uses OAuth 2.0 client access tokens for authenticating server requests.
Consumer Intelligence API access begins with a client and its corresponding client ID and client secret. Clients organize data, are separate, and relate to a specific environment.
API credentials are used to obtain an access token for accessing client-wide endpoints and user-specific endpoints.
Key | Description |
---|---|
Client ID | The identifier for your client, referred to as the client_id . |
Client secret | The secret for your client, referred to as the client_secret . |
⚠️ Keep your API credentials secret
Transmit and store your API credentials securely. Avoid including them in source code. If you suspect a leak, contact customer support.
Generating a new secret immediately invalidates the previous one, blocking access for all API requests using it. Note that this action is irreversible.
⚠️ Getting access to API credentials
Clients are only issued by contacting us.
The access token authorizes client access to all data and functionality. Obtain it via the OAuth 2.0 client credentials grant using the API credentials and the relevant OAuth URLs for your client's environment.
curl https://login.bisnode.com/as/token.oauth2 \
-X POST \
-u {YOUR_CLIENT_ID}:{YOUR_CLIENT_SECRET} \
-d "grant_type=client_credentials&scope=bci"
After requesting the token URL, you'll receive an access token in the response. Cache this token on your server until it expires and needs refreshing. Keep the access token secret.
{
"access_token": "{YOUR_ACCESS_TOKEN}",
"expires_in": 3600,
"scope": "bci",
"token_type": "bearer"
}
ℹ️ Use an existing OAuth client for authentication
Our API follows the OAuth 2.0 specification without modification, allowing you to use various OAuth clients for authentication. We recommend this over creating your own implementation. See this reference for available clients in your language.
Access tokens expire hourly, indicated by the expires_in
key in the response. When expired, obtain a new token.
Authenticate all API requests using a bearer authentication header. This header accesses client-wide endpoints (e.g. persons, consumers, webhooks, etc.).
Type | Value |
---|---|
Header | Authorization: Bearer {YOUR_ACCESS_TOKEN} |
curl https://api.bisnode.com/consumer-intelligence/v3/webhooks \
-H "Authorization: Bearer {YOUR_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
When using an access_token
to access resources, you may encounter the following 4XX range HTTP Status Codes:
HTTP Status Code | Explanation |
---|---|
400 Bad Request | The request payload failed schema validation or parsing. |
401 Unauthorized | Missing or invalid authentication details. |
403 Forbidden | Authentication succeeded, but the client lacks access to the resource due to missing permissions. |
404 Not Found | Requested resource doesn't exist. |
405 Method Not Allowed | HTTP method is not available for the given endpoint. |
409 Conflict | Request was rejected due to a conflicting state. |
429 Too Many Requests | Request was rejected due to rate limiting. |
In all cases, an RFC7807 Problem Details body is returned to aid in debugging.
Title | Description |
---|---|
Bad Request | Some part of the request was malformed. See associated detail message for more information. |
Bad Gateway | The service is currently unavailable. Most likely the service was slow to respond, might be overloaded or down for maintenance. Other endpoints might still be available. You may want to retry the request using a randomized backoff delay. Check the Consumer Intelligence Status page if this problem persists. |
Constraint Violation | Some part of the request does not validate the requirements. See associated violations for more information. |
Forbidden | The current context is not allowed to access the requested resource. |
Gateway Timeout | A request timed out. |
Internal Server Error | A critical error has occurred. An employee has been alerted and will work to remedy the situation. |
Not Found | The requested entity was not found. |
Unauthorized | The request contained an invalid or expired token. |
Consumer Intelligence endpoints returning collections of a specific type of resource, such as GET /consumers
, will return a paginated response. Each response will consist of a subset of the resources, called a page.To retrieve the entire collection, subsequent pages need to be fetched.
Each response includes two properties: data
and nextPageToken
. The data
property contains the records of the current page and the nextPageToken
property contains the cursor of the next page. The cursors are unique identifiers for specific records in the dataset that help you keep track of your position and navigate through the pages.
When querying a paginated endpoint, you may provide the following pagination query parameters:
pageSize
pageToken
All of these pagination query parameters are optional. If pageSize
is not provided, the default page size of 100 is used. If pageToken
is not provided, the returned page will contain the first set of resources in the collection.
Responses from most paginated endpoints are sorted in ascending order according to when the resource was created. Hence, for a request like GET /consumers
, the most dated uploaded consumers appear on the first page.
Consumer Intelligence's API is versioned. A new version is released when breaking changes occur, while new features and bug fixes (additive changes) are available in all API versions.
Some endpoints we have are labelled. Here's an explanation of each label:
This endpoint is now feature complete and the implementation will not change. There may be bugs or stability issues but they are actively being worked on. We are still open to receiving feedback before delivering a stable release.
This endpoint is being released in an early stage to get feedback. There are likely bugs or other issues that may not necessarily be prioritized. The whole implementation may be completely changed or removed.
market required | string |
legalId | string [ 0 .. 250 ] characters National identity number. Has different flavors in different countries and can contain multiple different identification numbers/strings. Example: 198001022386 (faked swedish "personnummer" in the supported format, please note that the year is four digits). |
firstName | string [ 0 .. 250 ] characters The first name of the consumer. Multiple first names are supported, but will only use the first 3 provided. Names can be separated using space, comma, dash, or any other similar non alpha-character. |
familyName | string [ 0 .. 250 ] characters The last name of the consumer. Multiple last names (or additional names) are supported, but will only use the first 3 provided. Names can be separated using space, comma, dash, or any other similar non alpha-character. |
dateOfBirth | string <date> Date of birth in accordance with https://en.wikipedia.org/wiki/ISO_8601, i.e. YYYY-MM-DD (W3C-DTF). |
yearOfBirth | integer <int32> [ 0 .. 9999 ] A four digit representation of the year this consumer was born. |
streetName | string [ 0 .. 250 ] characters The street name of an address this consumer is, or has been, registered to. |
streetNumber | string [ 0 .. 250 ] characters The street number of an address this consumer is, or has been, registered to. |
postalCode | string [ 0 .. 250 ] characters The postal code (zip code) of an address this consumer is, or has been, registered to. |
city | string [ 0 .. 250 ] characters The postal city (district) of an address this consumer is, or has been, registered to. |
entrance | string [ 0 .. 250 ] characters The entrance of an address this consumer is, or has been, registered to. |
floor | string [ 0 .. 250 ] characters The floor of an address this consumer is, or has been, registered to. |
apartment | string [ 0 .. 250 ] characters The apartment of an address this consumer is, or has been, registered to. |
fullAddress | string [ 0 .. 250 ] characters The full address is an address the consumer is registered to, provided as one string.
When this field is provided, it will be parsed and used to populate any of the following fields with Please use the specific components whenever you can, it will probably provide a better hit rate for your queries. Some examples: Given that you do not know the streetNumber and entrance, and do not wish to parse this yourself, you can provide the following query to Consumer Intelligence:
Consumer Intelligence will then populate the missing fields streetName, streetNumber and entrance from the provided fullAddress into the following:
If you wish a field not to be parsed, you can provide an empty field:
Would result in:
|
phoneNumber | string [ 0 .. 250 ] characters Phone number that belongs, or has belonged, to the consumer. Preferably in E.164 format. E.g. +46704284712 |
gender | string Enum: "MALE" "FEMALE" "OTHER" The gender of the consumer. |
{- "legalId": 198001022386,
- "firstName": "string",
- "familyName": "string",
- "dateOfBirth": "1980-09-23",
- "yearOfBirth": 1969,
- "streetName": "Storgatan",
- "streetNumber": 22,
- "postalCode": 41114,
- "city": "Göteborg",
- "entrance": "A",
- "floor": 3,
- "apartment": 1522,
- "fullAddress": "Storgatan 22B",
- "phoneNumber": "+46704284712",
- "gender": "MALE"
}
{- "status": {
- "active": true,
- "deceased": true,
- "deceasedDetails": {
- "foundDeadDate": "2019-08-24",
- "foundDeadDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR"
}, - "deregistered": true,
- "deregisteredDetails": {
- "baseReason": "string",
- "deregisteredDate": "2019-08-24",
- "deregisteredDatePrecision": "YEAR"
}, - "protected": true,
- "merged": true,
- "mergedDetails": {
- "gedi": "string",
- "baseReason": "string",
- "mergedDate": "2019-08-24",
- "mergedDatePrecision": "YEAR"
}, - "missing": true,
- "missingDetails": {
- "baseReason": "string",
- "missingDate": "2019-08-24",
- "missingDatePrecision": "YEAR"
}, - "movedAbroad": true,
- "movedAbroadDetails": {
- "baseReason": "string",
- "movedAbroadDate": "2019-08-24",
- "movedAbroadDatePrecision": "YEAR",
- "reRegistrationDate": "2019-08-24",
- "reRegistrationDatePrecision": "YEAR",
- "extendedRetentionStartDate": "2019-08-24",
- "extendedRetentionStartDatePrecision": "YEAR"
}, - "removed": true,
- "removedDetails": {
- "baseReason": "string",
- "removedDate": "2019-08-24",
- "removedDatePrecision": "YEAR"
}
}, - "relationships": {
- "beneficiaries": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR"
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}
}
], - "children": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR"
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}
}
], - "custodians": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR"
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}
}
], - "estateParties": [
- {
- "estateAddress": {
- "postalFormattedAddress": [
- "string"
], - "type": "COMMUTER",
- "restricted": "CONFIDENTIAL",
- "postal": true,
- "verified": true,
- "addressId": "string",
- "baseAddressLines": [
- "string"
], - "baseBuildingType": "string",
- "careOf": "string",
- "constituencyCode": "string",
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "parishCode": "string",
- "postOfficeBox": "string",
- "cadastralIndexCode": "string",
- "blockCode": "string",
- "parcelCode": "string",
- "leaseCode": "string",
- "schoolDistrictCode": "string",
- "unitCode": "string",
- "streetName": "string",
- "streetNumber": "string",
- "entrance": "string",
- "floor": "string",
- "apartment": "string",
- "postalCode": "string",
- "city": "string",
- "countryCode": "string",
- "municipalAddressCode": "string",
- "municipality": "string",
- "municipalityCode": "string",
- "district": "string",
- "districtCode": "string",
- "county": "string",
- "countyCode": "string",
- "region": "string",
- "regionCode": "string",
- "coordinates": {
- "latitude": 0.1,
- "longitude": 0.1
}, - "dispatchingInformation": "string"
}, - "estatePartyType": "LEGAL_ADVISOR",
- "name": "string",
- "organizationNumber": "string",
- "person": {
- "firstName": "string",
- "familyName": "string",
- "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR"
}, - "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR"
}, - "publicSettlement": true,
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}
}
], - "guardians": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR"
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "type": "FULL"
}
], - "parents": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR"
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}
}
], - "partners": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR"
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "partnerRelation": "PARTNER"
}
], - "trustees": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR"
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}
}
], - "wards": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR"
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}
}
]
}, - "relocationEvents": [
- {
- "date": "2019-08-24",
- "fromCity": "string",
- "fromCountry": "string",
- "toCity": "string",
- "toCountry": "string",
- "type": "MOVED"
}
], - "addresses": [
- {
- "postalFormattedAddress": [
- "string"
], - "type": "COMMUTER",
- "restricted": "CONFIDENTIAL",
- "postal": true,
- "verified": true,
- "addressId": "string",
- "baseAddressLines": [
- "string"
], - "baseBuildingType": "string",
- "careOf": "string",
- "constituencyCode": "string",
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "parishCode": "string",
- "postOfficeBox": "string",
- "cadastralIndexCode": "string",
- "blockCode": "string",
- "parcelCode": "string",
- "leaseCode": "string",
- "schoolDistrictCode": "string",
- "unitCode": "string",
- "streetName": "string",
- "streetNumber": "string",
- "entrance": "string",
- "floor": "string",
- "apartment": "string",
- "postalCode": "string",
- "city": "string",
- "countryCode": "string",
- "municipalAddressCode": "string",
- "municipality": "string",
- "municipalityCode": "string",
- "district": "string",
- "districtCode": "string",
- "county": "string",
- "countyCode": "string",
- "region": "string",
- "regionCode": "string",
- "coordinates": {
- "latitude": 0.1,
- "longitude": 0.1
}, - "dispatchingInformation": "string"
}
], - "birthPlace": {
- "postalFormattedAddress": [
- "string"
], - "type": "COMMUTER",
- "restricted": "CONFIDENTIAL",
- "postal": true,
- "verified": true,
- "addressId": "string",
- "baseAddressLines": [
- "string"
], - "baseBuildingType": "string",
- "careOf": "string",
- "constituencyCode": "string",
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "parishCode": "string",
- "postOfficeBox": "string",
- "cadastralIndexCode": "string",
- "blockCode": "string",
- "parcelCode": "string",
- "leaseCode": "string",
- "schoolDistrictCode": "string",
- "unitCode": "string",
- "streetName": "string",
- "streetNumber": "string",
- "entrance": "string",
- "floor": "string",
- "apartment": "string",
- "postalCode": "string",
- "city": "string",
- "countryCode": "string",
- "municipalAddressCode": "string",
- "municipality": "string",
- "municipalityCode": "string",
- "district": "string",
- "districtCode": "string",
- "county": "string",
- "countyCode": "string",
- "region": "string",
- "regionCode": "string",
- "coordinates": {
- "latitude": 0.1,
- "longitude": 0.1
}, - "dispatchingInformation": "string"
}, - "phoneNumbers": [
- {
- "type": "FAX",
- "countryCallingCode": 0,
- "number": "string",
- "nationalNumber": "string",
- "internationalNumber": "string",
- "telemarketingRestriction": true
}
], - "enrichment": {
- "areaCoastal": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "areaShareForeignBorn": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "areaId": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "savingsCapitalEstimate": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "carTypeElectric": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "carElectricMoped": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "carPurchasePrediction": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "carPurchasePredictionUsed": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "carTypeHybrid": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "charityScore": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "companyBoard": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "companyCEO": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "companyOther": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "companyRole": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "culturalSegment": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "eCommerceScore": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "levelOfEducation": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "financialSegment": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveFirstTime": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "householdId": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveHousehold": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "housingType": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "areaInboundMoving": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "incomeFamilyAsset": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "incomeFamily": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "incomePersonAssets": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "incomePerson": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "lifeStage": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveIntoHousehold": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "movePrediction": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToApartment1": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToApartment6": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToApartment12": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToHouse1": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToHouse6": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToHouse12": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToUrbanization1": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToUrbanization6": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToUrbanization12": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "newCarBuyer": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "ownsCamper": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "ownsCar": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "ownsCaravan": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "ownsHousing": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "ownsMultipleCars": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "ownsProperty": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "ownsVacationHome": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "perceivedPurchasingPower": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "personsInHousehold": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "personsInHousehold18plus": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "personsInHousehold18to24": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "probabilitySmallChildren": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "probabilitySchoolChildren": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "probabilityTeen": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "purchasingPower": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "reliabilityScore": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "savingsPensionEstimate": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "savingsPotentialEstimate": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "savingsRegularPotential": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "singleToCouple1": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "singleToCouple6": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "singleToCouple12": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "spendGroceries": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "spendHousing": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "spendLiving": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "taxRate": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "urbanization": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}
}, - "customEnrichment": {
- "customAlphaNum1": {
- "value": "string",
- "label": "string"
}, - "customAlphaNum2": {
- "value": "string",
- "label": "string"
}, - "customAlphaNum3": {
- "value": "string",
- "label": "string"
}, - "customAlphaNum4": {
- "value": "string",
- "label": "string"
}, - "customAlphaNum5": {
- "value": "string",
- "label": "string"
}, - "customScore1": {
- "value": "string",
- "label": "string"
}, - "customScore2": {
- "value": "string",
- "label": "string"
}, - "customScore3": {
- "value": "string",
- "label": "string"
}, - "customScore4": {
- "value": "string",
- "label": "string"
}, - "customScore5": {
- "value": "string",
- "label": "string"
}, - "customScore6": {
- "value": "string",
- "label": "string"
}, - "customScore7": {
- "value": "string",
- "label": "string"
}, - "customScore8": {
- "value": "string",
- "label": "string"
}, - "customSegment1": {
- "value": "string",
- "label": "string"
}, - "customSegment2": {
- "value": "string",
- "label": "string"
}, - "customSegment3": {
- "value": "string",
- "label": "string"
}, - "customSegment4": {
- "value": "string",
- "label": "string"
}, - "customSegment5": {
- "value": "string",
- "label": "string"
}, - "customSegment6": {
- "value": "string",
- "label": "string"
}, - "customSegment7": {
- "value": "string",
- "label": "string"
}, - "customSegment8": {
- "value": "string",
- "label": "string"
}
}, - "metadata": {
- "updatedTimestamp": "2019-08-24T14:15:22Z",
- "sources": [
- {
- "updatedTimestamp": "2019-08-24T14:15:22Z",
- "name": "CPR",
- "market": "string"
}
]
}, - "languageTag": "string",
- "directMarketingRestriction": true,
- "charityMarketingRestriction": true,
- "onlineMarketingRestriction": true,
- "sex": "FEMALE",
- "gender": "FEMALE",
- "minor": "NO",
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR"
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "possibleNicknames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "baseNameCode": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "maritalStatus": "DIVORCED",
- "diplomaticImmunity": true,
- "futureLegalAuthorization": true,
- "identificationClaim": true
}
Returns a paginated list of your subscribed persons.
Your subscribed persons is a de-duplicated list of your identified consumers. Please see our guide on how to subscribe to new persons.
List is sorted in ascending order according to the person's changed timestamp.
In other words, the first page will return the persons with oldest changed timestamps.
When reaching the end, you will still receive a nextPageToken
, but the response will be empty.
Hence, if you have a job running to download latest changes since last,
you should store the last received nextPageToken
for use in the next job execution.
pageToken | string The |
fromDate | string <date> The |
pageSize | integer <int32> [ 1 .. 1000 ] Default: 100 |
{- "nextPageToken": "string",
- "data": [
- {
- "gedi": "string",
- "previousGedis": [
- "string"
], - "consumerIds": [
- "string"
], - "person": {
- "status": {
- "active": true,
- "deceased": true,
- "deceasedDetails": {
- "foundDeadDate": "2019-08-24",
- "foundDeadDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR"
}, - "deregistered": true,
- "deregisteredDetails": {
- "baseReason": "string",
- "deregisteredDate": "2019-08-24",
- "deregisteredDatePrecision": "YEAR"
}, - "protected": true,
- "merged": true,
- "mergedDetails": {
- "gedi": "string",
- "baseReason": "string",
- "mergedDate": "2019-08-24",
- "mergedDatePrecision": "YEAR"
}, - "missing": true,
- "missingDetails": {
- "baseReason": "string",
- "missingDate": "2019-08-24",
- "missingDatePrecision": "YEAR"
}, - "movedAbroad": true,
- "movedAbroadDetails": {
- "baseReason": "string",
- "movedAbroadDate": "2019-08-24",
- "movedAbroadDatePrecision": "YEAR",
- "reRegistrationDate": "2019-08-24",
- "reRegistrationDatePrecision": "YEAR",
- "extendedRetentionStartDate": "2019-08-24",
- "extendedRetentionStartDatePrecision": "YEAR"
}, - "removed": true,
- "removedDetails": {
- "baseReason": "string",
- "removedDate": "2019-08-24",
- "removedDatePrecision": "YEAR"
}
}, - "relationships": {
- "beneficiaries": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": null,
- "temporary": null,
- "validityPeriod": null,
- "identityLevel": null,
- "identityLevelDate": null,
- "identityLevelDatePrecision": null
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}
}
], - "children": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": null,
- "temporary": null,
- "validityPeriod": null,
- "identityLevel": null,
- "identityLevelDate": null,
- "identityLevelDatePrecision": null
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}
}
], - "custodians": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": null,
- "temporary": null,
- "validityPeriod": null,
- "identityLevel": null,
- "identityLevelDate": null,
- "identityLevelDatePrecision": null
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}
}
], - "estateParties": [
- {
- "estateAddress": {
- "postalFormattedAddress": [
- "string"
], - "type": "COMMUTER",
- "restricted": "CONFIDENTIAL",
- "postal": true,
- "verified": true,
- "addressId": "string",
- "baseAddressLines": [
- "string"
], - "baseBuildingType": "string",
- "careOf": "string",
- "constituencyCode": "string",
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "parishCode": "string",
- "postOfficeBox": "string",
- "cadastralIndexCode": "string",
- "blockCode": "string",
- "parcelCode": "string",
- "leaseCode": "string",
- "schoolDistrictCode": "string",
- "unitCode": "string",
- "streetName": "string",
- "streetNumber": "string",
- "entrance": "string",
- "floor": "string",
- "apartment": "string",
- "postalCode": "string",
- "city": "string",
- "countryCode": "string",
- "municipalAddressCode": "string",
- "municipality": "string",
- "municipalityCode": "string",
- "district": "string",
- "districtCode": "string",
- "county": "string",
- "countyCode": "string",
- "region": "string",
- "regionCode": "string",
- "coordinates": {
- "latitude": 0.1,
- "longitude": 0.1
}, - "dispatchingInformation": "string"
}, - "estatePartyType": "LEGAL_ADVISOR",
- "name": "string",
- "organizationNumber": "string",
- "person": {
- "firstName": "string",
- "familyName": "string",
- "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": null,
- "startDatePrecision": null,
- "endDate": null,
- "endDatePrecision": null
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR"
}, - "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR"
}, - "publicSettlement": true,
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}
}
], - "guardians": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": null,
- "temporary": null,
- "validityPeriod": null,
- "identityLevel": null,
- "identityLevelDate": null,
- "identityLevelDatePrecision": null
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "type": "FULL"
}
], - "parents": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": null,
- "temporary": null,
- "validityPeriod": null,
- "identityLevel": null,
- "identityLevelDate": null,
- "identityLevelDatePrecision": null
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}
}
], - "partners": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": null,
- "temporary": null,
- "validityPeriod": null,
- "identityLevel": null,
- "identityLevelDate": null,
- "identityLevelDatePrecision": null
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "partnerRelation": "PARTNER"
}
], - "trustees": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": null,
- "temporary": null,
- "validityPeriod": null,
- "identityLevel": null,
- "identityLevelDate": null,
- "identityLevelDatePrecision": null
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}
}
], - "wards": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": null,
- "temporary": null,
- "validityPeriod": null,
- "identityLevel": null,
- "identityLevelDate": null,
- "identityLevelDatePrecision": null
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}
}
]
}, - "relocationEvents": [
- {
- "date": "2019-08-24",
- "fromCity": "string",
- "fromCountry": "string",
- "toCity": "string",
- "toCountry": "string",
- "type": "MOVED"
}
], - "addresses": [
- {
- "postalFormattedAddress": [
- "string"
], - "type": "COMMUTER",
- "restricted": "CONFIDENTIAL",
- "postal": true,
- "verified": true,
- "addressId": "string",
- "baseAddressLines": [
- "string"
], - "baseBuildingType": "string",
- "careOf": "string",
- "constituencyCode": "string",
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "parishCode": "string",
- "postOfficeBox": "string",
- "cadastralIndexCode": "string",
- "blockCode": "string",
- "parcelCode": "string",
- "leaseCode": "string",
- "schoolDistrictCode": "string",
- "unitCode": "string",
- "streetName": "string",
- "streetNumber": "string",
- "entrance": "string",
- "floor": "string",
- "apartment": "string",
- "postalCode": "string",
- "city": "string",
- "countryCode": "string",
- "municipalAddressCode": "string",
- "municipality": "string",
- "municipalityCode": "string",
- "district": "string",
- "districtCode": "string",
- "county": "string",
- "countyCode": "string",
- "region": "string",
- "regionCode": "string",
- "coordinates": {
- "latitude": 0.1,
- "longitude": 0.1
}, - "dispatchingInformation": "string"
}
], - "birthPlace": {
- "postalFormattedAddress": [
- "string"
], - "type": "COMMUTER",
- "restricted": "CONFIDENTIAL",
- "postal": true,
- "verified": true,
- "addressId": "string",
- "baseAddressLines": [
- "string"
], - "baseBuildingType": "string",
- "careOf": "string",
- "constituencyCode": "string",
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "parishCode": "string",
- "postOfficeBox": "string",
- "cadastralIndexCode": "string",
- "blockCode": "string",
- "parcelCode": "string",
- "leaseCode": "string",
- "schoolDistrictCode": "string",
- "unitCode": "string",
- "streetName": "string",
- "streetNumber": "string",
- "entrance": "string",
- "floor": "string",
- "apartment": "string",
- "postalCode": "string",
- "city": "string",
- "countryCode": "string",
- "municipalAddressCode": "string",
- "municipality": "string",
- "municipalityCode": "string",
- "district": "string",
- "districtCode": "string",
- "county": "string",
- "countyCode": "string",
- "region": "string",
- "regionCode": "string",
- "coordinates": {
- "latitude": 0.1,
- "longitude": 0.1
}, - "dispatchingInformation": "string"
}, - "phoneNumbers": [
- {
- "type": "FAX",
- "countryCallingCode": 0,
- "number": "string",
- "nationalNumber": "string",
- "internationalNumber": "string",
- "telemarketingRestriction": true
}
], - "enrichment": {
- "areaCoastal": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "areaShareForeignBorn": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "areaId": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "savingsCapitalEstimate": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "carTypeElectric": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "carElectricMoped": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "carPurchasePrediction": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "carPurchasePredictionUsed": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "carTypeHybrid": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "charityScore": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "companyBoard": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "companyCEO": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "companyOther": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "companyRole": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "culturalSegment": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "eCommerceScore": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "levelOfEducation": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "financialSegment": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveFirstTime": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "householdId": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveHousehold": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "housingType": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "areaInboundMoving": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "incomeFamilyAsset": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "incomeFamily": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "incomePersonAssets": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "incomePerson": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "lifeStage": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveIntoHousehold": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "movePrediction": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToApartment1": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToApartment6": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToApartment12": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToHouse1": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToHouse6": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToHouse12": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToUrbanization1": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToUrbanization6": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToUrbanization12": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "newCarBuyer": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "ownsCamper": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "ownsCar": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "ownsCaravan": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "ownsHousing": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "ownsMultipleCars": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "ownsProperty": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "ownsVacationHome": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "perceivedPurchasingPower": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "personsInHousehold": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "personsInHousehold18plus": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "personsInHousehold18to24": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "probabilitySmallChildren": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "probabilitySchoolChildren": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "probabilityTeen": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "purchasingPower": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "reliabilityScore": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "savingsPensionEstimate": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "savingsPotentialEstimate": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "savingsRegularPotential": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "singleToCouple1": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "singleToCouple6": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "singleToCouple12": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "spendGroceries": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "spendHousing": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "spendLiving": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "taxRate": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "urbanization": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}
}, - "customEnrichment": {
- "customAlphaNum1": {
- "value": "string",
- "label": "string"
}, - "customAlphaNum2": {
- "value": "string",
- "label": "string"
}, - "customAlphaNum3": {
- "value": "string",
- "label": "string"
}, - "customAlphaNum4": {
- "value": "string",
- "label": "string"
}, - "customAlphaNum5": {
- "value": "string",
- "label": "string"
}, - "customScore1": {
- "value": "string",
- "label": "string"
}, - "customScore2": {
- "value": "string",
- "label": "string"
}, - "customScore3": {
- "value": "string",
- "label": "string"
}, - "customScore4": {
- "value": "string",
- "label": "string"
}, - "customScore5": {
- "value": "string",
- "label": "string"
}, - "customScore6": {
- "value": "string",
- "label": "string"
}, - "customScore7": {
- "value": "string",
- "label": "string"
}, - "customScore8": {
- "value": "string",
- "label": "string"
}, - "customSegment1": {
- "value": "string",
- "label": "string"
}, - "customSegment2": {
- "value": "string",
- "label": "string"
}, - "customSegment3": {
- "value": "string",
- "label": "string"
}, - "customSegment4": {
- "value": "string",
- "label": "string"
}, - "customSegment5": {
- "value": "string",
- "label": "string"
}, - "customSegment6": {
- "value": "string",
- "label": "string"
}, - "customSegment7": {
- "value": "string",
- "label": "string"
}, - "customSegment8": {
- "value": "string",
- "label": "string"
}
}, - "metadata": {
- "updatedTimestamp": "2019-08-24T14:15:22Z",
- "sources": [
- {
- "updatedTimestamp": "2019-08-24T14:15:22Z",
- "name": "CPR",
- "market": "string"
}
]
}, - "languageTag": "string",
- "directMarketingRestriction": true,
- "charityMarketingRestriction": true,
- "onlineMarketingRestriction": true,
- "sex": "FEMALE",
- "gender": "FEMALE",
- "minor": "NO",
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR"
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "possibleNicknames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "baseNameCode": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "maritalStatus": "DIVORCED",
- "diplomaticImmunity": true,
- "futureLegalAuthorization": true,
- "identificationClaim": true
}
}
]
}
{- "status": {
- "active": true,
- "deceased": true,
- "deceasedDetails": {
- "foundDeadDate": "2019-08-24",
- "foundDeadDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR"
}, - "deregistered": true,
- "deregisteredDetails": {
- "baseReason": "string",
- "deregisteredDate": "2019-08-24",
- "deregisteredDatePrecision": "YEAR"
}, - "protected": true,
- "merged": true,
- "mergedDetails": {
- "gedi": "string",
- "baseReason": "string",
- "mergedDate": "2019-08-24",
- "mergedDatePrecision": "YEAR"
}, - "missing": true,
- "missingDetails": {
- "baseReason": "string",
- "missingDate": "2019-08-24",
- "missingDatePrecision": "YEAR"
}, - "movedAbroad": true,
- "movedAbroadDetails": {
- "baseReason": "string",
- "movedAbroadDate": "2019-08-24",
- "movedAbroadDatePrecision": "YEAR",
- "reRegistrationDate": "2019-08-24",
- "reRegistrationDatePrecision": "YEAR",
- "extendedRetentionStartDate": "2019-08-24",
- "extendedRetentionStartDatePrecision": "YEAR"
}, - "removed": true,
- "removedDetails": {
- "baseReason": "string",
- "removedDate": "2019-08-24",
- "removedDatePrecision": "YEAR"
}
}, - "relationships": {
- "beneficiaries": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR"
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}
}
], - "children": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR"
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}
}
], - "custodians": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR"
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}
}
], - "estateParties": [
- {
- "estateAddress": {
- "postalFormattedAddress": [
- "string"
], - "type": "COMMUTER",
- "restricted": "CONFIDENTIAL",
- "postal": true,
- "verified": true,
- "addressId": "string",
- "baseAddressLines": [
- "string"
], - "baseBuildingType": "string",
- "careOf": "string",
- "constituencyCode": "string",
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "parishCode": "string",
- "postOfficeBox": "string",
- "cadastralIndexCode": "string",
- "blockCode": "string",
- "parcelCode": "string",
- "leaseCode": "string",
- "schoolDistrictCode": "string",
- "unitCode": "string",
- "streetName": "string",
- "streetNumber": "string",
- "entrance": "string",
- "floor": "string",
- "apartment": "string",
- "postalCode": "string",
- "city": "string",
- "countryCode": "string",
- "municipalAddressCode": "string",
- "municipality": "string",
- "municipalityCode": "string",
- "district": "string",
- "districtCode": "string",
- "county": "string",
- "countyCode": "string",
- "region": "string",
- "regionCode": "string",
- "coordinates": {
- "latitude": 0.1,
- "longitude": 0.1
}, - "dispatchingInformation": "string"
}, - "estatePartyType": "LEGAL_ADVISOR",
- "name": "string",
- "organizationNumber": "string",
- "person": {
- "firstName": "string",
- "familyName": "string",
- "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR"
}, - "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR"
}, - "publicSettlement": true,
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}
}
], - "guardians": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR"
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "type": "FULL"
}
], - "parents": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR"
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}
}
], - "partners": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR"
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "partnerRelation": "PARTNER"
}
], - "trustees": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR"
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}
}
], - "wards": [
- {
- "gender": "FEMALE",
- "minor": "NO",
- "protected": true,
- "deceased": true,
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR"
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "deceasedDate": "2019-08-24",
- "deceasedDatePrecision": "YEAR",
- "unknownIdentity": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}
}
]
}, - "relocationEvents": [
- {
- "date": "2019-08-24",
- "fromCity": "string",
- "fromCountry": "string",
- "toCity": "string",
- "toCountry": "string",
- "type": "MOVED"
}
], - "addresses": [
- {
- "postalFormattedAddress": [
- "string"
], - "type": "COMMUTER",
- "restricted": "CONFIDENTIAL",
- "postal": true,
- "verified": true,
- "addressId": "string",
- "baseAddressLines": [
- "string"
], - "baseBuildingType": "string",
- "careOf": "string",
- "constituencyCode": "string",
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "parishCode": "string",
- "postOfficeBox": "string",
- "cadastralIndexCode": "string",
- "blockCode": "string",
- "parcelCode": "string",
- "leaseCode": "string",
- "schoolDistrictCode": "string",
- "unitCode": "string",
- "streetName": "string",
- "streetNumber": "string",
- "entrance": "string",
- "floor": "string",
- "apartment": "string",
- "postalCode": "string",
- "city": "string",
- "countryCode": "string",
- "municipalAddressCode": "string",
- "municipality": "string",
- "municipalityCode": "string",
- "district": "string",
- "districtCode": "string",
- "county": "string",
- "countyCode": "string",
- "region": "string",
- "regionCode": "string",
- "coordinates": {
- "latitude": 0.1,
- "longitude": 0.1
}, - "dispatchingInformation": "string"
}
], - "birthPlace": {
- "postalFormattedAddress": [
- "string"
], - "type": "COMMUTER",
- "restricted": "CONFIDENTIAL",
- "postal": true,
- "verified": true,
- "addressId": "string",
- "baseAddressLines": [
- "string"
], - "baseBuildingType": "string",
- "careOf": "string",
- "constituencyCode": "string",
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "parishCode": "string",
- "postOfficeBox": "string",
- "cadastralIndexCode": "string",
- "blockCode": "string",
- "parcelCode": "string",
- "leaseCode": "string",
- "schoolDistrictCode": "string",
- "unitCode": "string",
- "streetName": "string",
- "streetNumber": "string",
- "entrance": "string",
- "floor": "string",
- "apartment": "string",
- "postalCode": "string",
- "city": "string",
- "countryCode": "string",
- "municipalAddressCode": "string",
- "municipality": "string",
- "municipalityCode": "string",
- "district": "string",
- "districtCode": "string",
- "county": "string",
- "countyCode": "string",
- "region": "string",
- "regionCode": "string",
- "coordinates": {
- "latitude": 0.1,
- "longitude": 0.1
}, - "dispatchingInformation": "string"
}, - "phoneNumbers": [
- {
- "type": "FAX",
- "countryCallingCode": 0,
- "number": "string",
- "nationalNumber": "string",
- "internationalNumber": "string",
- "telemarketingRestriction": true
}
], - "enrichment": {
- "areaCoastal": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "areaShareForeignBorn": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "areaId": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "savingsCapitalEstimate": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "carTypeElectric": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "carElectricMoped": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "carPurchasePrediction": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "carPurchasePredictionUsed": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "carTypeHybrid": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "charityScore": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "companyBoard": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "companyCEO": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "companyOther": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "companyRole": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "culturalSegment": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "eCommerceScore": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "levelOfEducation": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "financialSegment": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveFirstTime": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "householdId": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveHousehold": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "housingType": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "areaInboundMoving": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "incomeFamilyAsset": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "incomeFamily": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "incomePersonAssets": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "incomePerson": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "lifeStage": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveIntoHousehold": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "movePrediction": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToApartment1": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToApartment6": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToApartment12": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToHouse1": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToHouse6": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToHouse12": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToUrbanization1": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToUrbanization6": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "moveToUrbanization12": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "newCarBuyer": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "ownsCamper": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "ownsCar": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "ownsCaravan": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "ownsHousing": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "ownsMultipleCars": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "ownsProperty": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "ownsVacationHome": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "perceivedPurchasingPower": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "personsInHousehold": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "personsInHousehold18plus": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "personsInHousehold18to24": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "probabilitySmallChildren": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "probabilitySchoolChildren": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "probabilityTeen": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "purchasingPower": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "reliabilityScore": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "savingsPensionEstimate": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "savingsPotentialEstimate": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "savingsRegularPotential": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "singleToCouple1": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "singleToCouple6": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "singleToCouple12": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "spendGroceries": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "spendHousing": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "spendLiving": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "taxRate": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}, - "urbanization": {
- "baseValue": "string",
- "baseLabel": "string",
- "harmonizedValue": "string",
- "harmonizedLabel": "string",
- "basePrecision": "UNKNOWN"
}
}, - "customEnrichment": {
- "customAlphaNum1": {
- "value": "string",
- "label": "string"
}, - "customAlphaNum2": {
- "value": "string",
- "label": "string"
}, - "customAlphaNum3": {
- "value": "string",
- "label": "string"
}, - "customAlphaNum4": {
- "value": "string",
- "label": "string"
}, - "customAlphaNum5": {
- "value": "string",
- "label": "string"
}, - "customScore1": {
- "value": "string",
- "label": "string"
}, - "customScore2": {
- "value": "string",
- "label": "string"
}, - "customScore3": {
- "value": "string",
- "label": "string"
}, - "customScore4": {
- "value": "string",
- "label": "string"
}, - "customScore5": {
- "value": "string",
- "label": "string"
}, - "customScore6": {
- "value": "string",
- "label": "string"
}, - "customScore7": {
- "value": "string",
- "label": "string"
}, - "customScore8": {
- "value": "string",
- "label": "string"
}, - "customSegment1": {
- "value": "string",
- "label": "string"
}, - "customSegment2": {
- "value": "string",
- "label": "string"
}, - "customSegment3": {
- "value": "string",
- "label": "string"
}, - "customSegment4": {
- "value": "string",
- "label": "string"
}, - "customSegment5": {
- "value": "string",
- "label": "string"
}, - "customSegment6": {
- "value": "string",
- "label": "string"
}, - "customSegment7": {
- "value": "string",
- "label": "string"
}, - "customSegment8": {
- "value": "string",
- "label": "string"
}
}, - "metadata": {
- "updatedTimestamp": "2019-08-24T14:15:22Z",
- "sources": [
- {
- "updatedTimestamp": "2019-08-24T14:15:22Z",
- "name": "CPR",
- "market": "string"
}
]
}, - "languageTag": "string",
- "directMarketingRestriction": true,
- "charityMarketingRestriction": true,
- "onlineMarketingRestriction": true,
- "sex": "FEMALE",
- "gender": "FEMALE",
- "minor": "NO",
- "citizenship": [
- "string"
], - "legalId": {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR",
- "history": [
- {
- "identityNumber": "string",
- "temporary": true,
- "validityPeriod": {
- "startDate": "2019-08-24",
- "startDatePrecision": "YEAR",
- "endDate": "2019-08-24",
- "endDatePrecision": "YEAR"
}, - "identityLevel": "VERIFIED",
- "identityLevelDate": "2019-08-24",
- "identityLevelDatePrecision": "YEAR"
}
]
}, - "estimatedAge": 0,
- "firstNames": [
- "string"
], - "possibleNicknames": [
- "string"
], - "preferredFirstName": "string",
- "additionalName": "string",
- "familyName": "string",
- "honorificPrefix": "string",
- "honorificSuffix": "string",
- "shortenedFullName": "string",
- "baseNameCode": "string",
- "birthDate": "2019-08-24",
- "birthDatePrecision": "YEAR",
- "maritalStatus": "DIVORCED",
- "diplomaticImmunity": true,
- "futureLegalAuthorization": true,
- "identificationClaim": true
}
List all uploaded consumers.
pageToken | string |
pageSize | integer <int32> [ 1 .. 1000 ] Default: 100 |
state | string (ConsumerStateTypeDto) Enum: "UPLOADED" "IDENTIFYING" "IDENTIFIED" "NOT_IDENTIFIED" |
{- "nextPageToken": "string",
- "data": [
- {
- "createdDateTime": "2019-08-24T14:15:22Z",
- "data": {
- "legalId": 198001022386,
- "firstName": "string",
- "familyName": "string",
- "dateOfBirth": "1980-09-23",
- "yearOfBirth": 1969,
- "streetName": "Storgatan",
- "streetNumber": 22,
- "postalCode": 41114,
- "city": "Göteborg",
- "entrance": "A",
- "floor": 3,
- "apartment": 1522,
- "fullAddress": "Storgatan 22B",
- "phoneNumber": "+46704284712",
- "gender": "MALE"
}, - "consumerId": "string",
- "market": "string",
- "state": "string",
- "source": "CPR",
- "gedi": "string"
}
]
}
Upload a batch of consumers to match for corresponding persons in your configured sources. Found persons will automatically be subscribed to any future changes, as long as they have connected consumers.
market required | string non-empty [A-Z]{2} Used to determine which dataset or integration to use when identifying a consumer and subscribing to changes. Two letter representation of a country in accordance with [ISO_3166-1_alpha-2]https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2), e.g SE, NO, DK, FI. |
required | object (ConsumerDataDto) Consumer data provided to identify a person. Provide as much data as possible for a higher hit rate. |
consumerId required | string [ 1 .. 250 ] characters ^(?!_)[a-zA-Z0-9@\-_]+$ A (to you) unique id for this consumer. You will use this id to find the identification result of a consumer and/or changes to the related subscription. |
[- {
- "market": "string",
- "data": {
- "legalId": 198001022386,
- "firstName": "string",
- "familyName": "string",
- "dateOfBirth": "1980-09-23",
- "yearOfBirth": 1969,
- "streetName": "Storgatan",
- "streetNumber": 22,
- "postalCode": 41114,
- "city": "Göteborg",
- "entrance": "A",
- "floor": 3,
- "apartment": 1522,
- "fullAddress": "Storgatan 22B",
- "phoneNumber": "+46704284712",
- "gender": "MALE"
}, - "consumerId": "1x2y3z"
}
]
{- "status": 400,
- "detail": "Request body contains one or more errors",
- "type": "about:blank",
- "title": "Constraint Violation",
- "instance": "urn:bisnode:traceid:7a40216a-4506-4e20-a404-0e60854759cb",
- "violations": [
- {
- "field": "field",
- "message": "must not be null"
}
]
}
Delete a batch of uploaded consumers. This will also automatically unsubscribe any related persons if no other consumer is already connected to the subscribed person.
consumerIds required | Array of strings [ 1 .. 250 ] items [ items^(?!_)[a-zA-Z0-9@\-_]+$ ] Unique ids for your consumers. |
{- "consumerIds": [
- "string"
]
}
{- "status": 400,
- "detail": "Request body contains one or more errors",
- "type": "about:blank",
- "title": "Constraint Violation",
- "instance": "urn:bisnode:traceid:7a40216a-4506-4e20-a404-0e60854759cb",
- "violations": [
- {
- "field": "field",
- "message": "must not be null"
}
]
}
Returns a paginated list of all available audit events.
Audit events are events happening to your resources within Consumer Intelligence. These events are usually synonymous to the webhook events.
Audit events are only stored for up to 1 year.
pageToken | string |
pageSize | integer <int32> [ 1 .. 1000 ] Default: 100 |
{- "nextPageToken": "string",
- "data": [
- {
- "id": "string",
- "timestamp": "2019-08-24T14:15:22Z",
- "type": "string",
- "gedi": "string",
- "source": "CPR",
- "consumerId": "string",
- "market": "DK"
}
]
}
url required | string |
events required | Array of strings (WebhookEventTypeDto) Items Enum: "*" "PING" "CONSUMER_UPLOADED" "CONSUMER_DELETED" "CONSUMER_IDENTIFIED" "CONSUMER_NOT_IDENTIFIED" "PERSON_SUBSCRIBED" "PERSON_UNSUBSCRIBED" "PERSON_REIDENTIFIED" "PERSON_CHANGED" "ENRICHMENT_CHANGED" "LIFE_EVENT" |
description | string |
{- "url": "string",
- "events": [
- "*"
], - "description": "string"
}
{- "id": "string",
- "url": "string",
- "events": [
- "*"
], - "description": "string",
- "secret": "string"
}
Used for testing and validating the use of the webhook.
type required | string (WebhookEventTypeDto) Enum: "PING" "*" "CONSUMER_UPLOADED" "CONSUMER_DELETED" "CONSUMER_IDENTIFIED" "CONSUMER_NOT_IDENTIFIED" "PERSON_SUBSCRIBED" "PERSON_UNSUBSCRIBED" "PERSON_REIDENTIFIED" "PERSON_CHANGED" "ENRICHMENT_CHANGED" "LIFE_EVENT" |
id required | string |
timestamp required | string <date-time> |
{- "type": "*",
- "id": "string",
- "timestamp": "2019-08-24T14:15:22Z"
}
A consumer has been uploaded.
type required | string (WebhookEventTypeDto) Enum: "CONSUMER_UPLOADED" "*" "PING" "CONSUMER_DELETED" "CONSUMER_IDENTIFIED" "CONSUMER_NOT_IDENTIFIED" "PERSON_SUBSCRIBED" "PERSON_UNSUBSCRIBED" "PERSON_REIDENTIFIED" "PERSON_CHANGED" "ENRICHMENT_CHANGED" "LIFE_EVENT" |
id required | string |
timestamp required | string <date-time> |
consumerId required | string A client unique id of the consumer. |
market required | string Enum: "DK" "FI" "NO" "SE" "XX" Market of the consumer. |
{- "type": "*",
- "id": "string",
- "timestamp": "2019-08-24T14:15:22Z",
- "consumerId": "string",
- "market": "DK"
}
A consumer has been deleted.
type required | string (WebhookEventTypeDto) Enum: "CONSUMER_DELETED" "*" "PING" "CONSUMER_UPLOADED" "CONSUMER_IDENTIFIED" "CONSUMER_NOT_IDENTIFIED" "PERSON_SUBSCRIBED" "PERSON_UNSUBSCRIBED" "PERSON_REIDENTIFIED" "PERSON_CHANGED" "ENRICHMENT_CHANGED" "LIFE_EVENT" |
id required | string |
timestamp required | string <date-time> |
consumerId required | string A client unique id of the consumer. |
market required | string Enum: "DK" "FI" "NO" "SE" "XX" Market of the consumer. |
{- "type": "*",
- "id": "string",
- "timestamp": "2019-08-24T14:15:22Z",
- "consumerId": "string",
- "market": "DK"
}
A person has been identified for a consumer.
type required | string (WebhookEventTypeDto) Enum: "CONSUMER_IDENTIFIED" "*" "PING" "CONSUMER_UPLOADED" "CONSUMER_DELETED" "CONSUMER_NOT_IDENTIFIED" "PERSON_SUBSCRIBED" "PERSON_UNSUBSCRIBED" "PERSON_REIDENTIFIED" "PERSON_CHANGED" "ENRICHMENT_CHANGED" "LIFE_EVENT" |
id required | string |
timestamp required | string <date-time> |
consumerId required | string A client unique id of the consumer. |
market required | string Enum: "DK" "FI" "NO" "SE" "XX" Market of the consumer. |
gedi required | string Gedi of identified consumer. |
source required | string (SourceName) Enum: "CPR" "CUSTOM_SANDBOX" "DUN_BRADSTREET" "DVV" "FREG" "SPAR" Identification source. |
{- "type": "*",
- "id": "string",
- "timestamp": "2019-08-24T14:15:22Z",
- "consumerId": "string",
- "market": "DK",
- "gedi": "string",
- "source": "CPR"
}
No person could be identified for the consumer.
type required | string (WebhookEventTypeDto) Enum: "CONSUMER_NOT_IDENTIFIED" "*" "PING" "CONSUMER_UPLOADED" "CONSUMER_DELETED" "CONSUMER_IDENTIFIED" "PERSON_SUBSCRIBED" "PERSON_UNSUBSCRIBED" "PERSON_REIDENTIFIED" "PERSON_CHANGED" "ENRICHMENT_CHANGED" "LIFE_EVENT" |
id required | string |
timestamp required | string <date-time> |
consumerId required | string A client unique id of the consumer. |
market required | string Enum: "DK" "FI" "NO" "SE" "XX" Market of the consumer. |
sources required | Array of strings (SourceName) Items Enum: "CPR" "CUSTOM_SANDBOX" "DUN_BRADSTREET" "DVV" "FREG" "SPAR" List of sources the consumer could not be identified in. |
{- "type": "*",
- "id": "string",
- "timestamp": "2019-08-24T14:15:22Z",
- "consumerId": "string",
- "market": "DK",
- "sources": [
- "CPR"
]
}
A subscribed person who was previously identified is identified again with a different gedi, and possibly also with a new source. Can occur when one person has been identified as two different gedis, but are now de-duplicated
type required | string (WebhookEventTypeDto) Enum: "PERSON_REIDENTIFIED" "*" "PING" "CONSUMER_UPLOADED" "CONSUMER_DELETED" "CONSUMER_IDENTIFIED" "CONSUMER_NOT_IDENTIFIED" "PERSON_SUBSCRIBED" "PERSON_UNSUBSCRIBED" "PERSON_CHANGED" "ENRICHMENT_CHANGED" "LIFE_EVENT" |
id required | string |
timestamp required | string <date-time> |
consumerIds required | Array of strings List of consumer ids related to the re-identified person. |
market required | string Enum: "DK" "FI" "NO" "SE" "XX" Market of the subscribed person. |
required | object (GediSource) The gedi and source for the person that was previously identified |
required | object (GediSource) The gedi and source that has replaced the previously identified person |
{- "type": "*",
- "id": "string",
- "timestamp": "2019-08-24T14:15:22Z",
- "consumerIds": [
- "string"
], - "market": "DK",
- "previous": {
- "gedi": "string",
- "source": "string"
}, - "replacedBy": {
- "gedi": "string",
- "source": "string"
}
}
A subscribed person has changed.
type required | string (WebhookEventTypeDto) Enum: "PERSON_CHANGED" "*" "PING" "CONSUMER_UPLOADED" "CONSUMER_DELETED" "CONSUMER_IDENTIFIED" "CONSUMER_NOT_IDENTIFIED" "PERSON_SUBSCRIBED" "PERSON_UNSUBSCRIBED" "PERSON_REIDENTIFIED" "ENRICHMENT_CHANGED" "LIFE_EVENT" |
id required | string |
timestamp required | string <date-time> |
consumerIds required | Array of strings List of consumer ids related to the subscribed person. |
gedi required | string Gedi of the subscribed person. |
source required | string (SourceName) Enum: "CPR" "CUSTOM_SANDBOX" "DUN_BRADSTREET" "DVV" "FREG" "SPAR" Source that generated the change. |
jsonPointers required | Array of strings Not yet implemented. List of RFC 6901 JSON Pointers affected by the change. |
changedId required | string Not yet implemented.
A change ID that can be used to get the full RFC 6902 JSON Patch
when retrieving the person using the
|
{- "type": "*",
- "id": "string",
- "timestamp": "2019-08-24T14:15:22Z",
- "consumerIds": [
- "string"
], - "gedi": "string",
- "source": "CPR",
- "jsonPointers": [
- "string"
], - "changedId": "string"
}
One or more enrichment variables of a subscribed person has changed.
type required | string (WebhookEventTypeDto) Enum: "ENRICHMENT_CHANGED" "*" "PING" "CONSUMER_UPLOADED" "CONSUMER_DELETED" "CONSUMER_IDENTIFIED" "CONSUMER_NOT_IDENTIFIED" "PERSON_SUBSCRIBED" "PERSON_UNSUBSCRIBED" "PERSON_REIDENTIFIED" "PERSON_CHANGED" "LIFE_EVENT" |
id required | string |
timestamp required | string <date-time> |
consumerIds required | Array of strings List of consumer ids related to the subscribed person. |
gedi required | string Gedi of the subscribed person. |
variable required | string Name of the enrichment variable that has changed. |
{- "type": "*",
- "id": "string",
- "timestamp": "2019-08-24T14:15:22Z",
- "consumerIds": [
- "string"
], - "gedi": "string",
- "variable": "string"
}
A life event, to a subscribed person, occurred.
id required | string |
type required | string (WebhookEventTypeDto) Enum: "LIFE_EVENT" "*" "PING" "CONSUMER_UPLOADED" "CONSUMER_DELETED" "CONSUMER_IDENTIFIED" "CONSUMER_NOT_IDENTIFIED" "PERSON_SUBSCRIBED" "PERSON_UNSUBSCRIBED" "PERSON_REIDENTIFIED" "PERSON_CHANGED" "ENRICHMENT_CHANGED" |
timestamp required | string <date-time> |
phase required | string The phase of the Life Event |
market required | string Enum: "DK" "FI" "NO" "SE" "XX" Market of the subscribed person. |
gedi required | string Gedi of the subscribed person. |
consumerIds required | Array of strings List of consumer ids related to the subscribed person. |
trigger required | string (LifeEventTrigger) Enum: "HOUSEHOLD_MOVE" "SINGLE_TO_COUPLE" "MOVE_FROM_APARTMENT_TO_HOUSE" "MOVE_FROM_HOUSE_TO_APARTMENT" "MOVE_URBANIZATION" The life event trigger |
probability | integer <int32> The probability that the Life Event will occur. 1-99. |
withinEstimatedDays | integer <int64> Within how many days is the prediction valid. |
{- "type": "LIFE_EVENT",
- "id": "e965c1b7-597d-431b-a89a-47a0990e4070",
- "timestamp": "2024-01-04T10:15:30Z",
- "trigger": "HOUSEHOLD_MOVE",
- "consumerIds": [
- "consumerId1",
- "consumerId2"
], - "gedi": "gedi-123456789",
- "market": "SE",
- "phase": "PREDICT",
- "probability": 75,
- "withinEstimatedDays": 120
}