Get beneficial owners for a company
curl --request GET \
--url https://lens-api.tic.io/companies/{id}/beneficial-owners \
--header 'x-api-key: <api-key>'import requests
url = "https://lens-api.tic.io/companies/{id}/beneficial-owners"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://lens-api.tic.io/companies/{id}/beneficial-owners', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://lens-api.tic.io/companies/{id}/beneficial-owners",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://lens-api.tic.io/companies/{id}/beneficial-owners"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://lens-api.tic.io/companies/{id}/beneficial-owners")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://lens-api.tic.io/companies/{id}/beneficial-owners")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"bolagsverket_BeneficialOwnerNotificationId": 123,
"registration": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"notificationDate": "2023-11-07T05:31:56Z",
"fromDate": "2023-11-07T05:31:56Z",
"caseNumber": 123,
"caseYear": 123,
"registrationNumber": "<string>",
"companyName": "<string>",
"companyCode": "<string>",
"companyCodeDescription": "<string>",
"statusCode": "<string>",
"statusDescription": "<string>",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"bolagsverket_BeneficialOwnerSuspectNotificationId": 123,
"companyId": 123,
"bolagsverket_BeneficialOwner": [
{
"bolagsverket_BeneficialOwnerId": 123,
"bolagsverket_BeneficialOwnerNotificationId": 123,
"personId": 123,
"personalIdentityNumber": "<string>",
"fallbackPersonalIdentityNumber": "<string>",
"firstName": "<string>",
"middleName": "<string>",
"lastName": "<string>",
"fallbackName": "<string>",
"citizenshipCountryCode": "<string>",
"countryOfResidenceCode": "<string>",
"extentCode": "<string>",
"extentDescription": "<string>",
"bolagsverket_BeneficialOwnerGovern": [
{
"bolagsverket_BeneficialOwnerGovernId": 123,
"bolagsverket_BeneficialOwnerId": 123,
"governCode": "<string>",
"governDescription": "<string>",
"name": "<string>",
"registrationNumber": "<string>",
"companyId": 123
}
],
"person": {
"personId": 123,
"nationalityCountryCodeAlpha2": "<string>",
"personalIdentityNumber": "<string>",
"givenName": "<string>",
"firstName": "<string>",
"middleName": "<string>",
"lastName": "<string>",
"fullName": "<string>",
"isProtected": true,
"citizenshipCountryCode": "<string>",
"countryOfResidenceCode": "<string>",
"fallbackName": "<string>",
"fallbackPersonalIdentityNumber": "<string>",
"isMarried": true,
"isCoordinationNumber": true,
"birthday": "<string>",
"age": 123,
"kivraUpdatedAt": "2023-11-07T05:31:56Z",
"kivra": true,
"personAddress": [
{
"personAddressId": 123,
"personId": 123,
"addressTypeDescription": "<string>",
"label": "<string>",
"houseNumber": "<string>",
"co": "<string>",
"street": "<string>",
"postalCode": "<string>",
"city": "<string>",
"state": "<string>",
"county": "<string>",
"district": "<string>",
"countryName": "<string>",
"countryCodeAlpha3": "<string>",
"locality": "<string>",
"localityType": "<string>",
"position": {
"factory": {
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"coordinateSequenceFactory": {},
"srid": 123,
"elevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
},
"geometryServices": {
"geometryOverlay": {},
"geometryRelate": {},
"coordinateEqualityComparer": {},
"defaultSRID": 123,
"defaultCoordinateSequenceFactory": {},
"defaultPrecisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"defaultElevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
}
}
},
"userData": null,
"srid": 123,
"geometryType": "<string>",
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"coordinate": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"coordinates": [
{
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
],
"numPoints": 123,
"numGeometries": 123,
"isSimple": true,
"isValid": true,
"isEmpty": true,
"area": 123,
"length": 123,
"centroid": {
"coordinateSequence": {
"dimension": 123,
"measures": 123,
"spatial": 123,
"hasZ": true,
"hasM": true,
"zOrdinateIndex": 123,
"mOrdinateIndex": 123,
"first": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"last": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"count": 123
},
"coordinates": [
{
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
],
"numPoints": 123,
"isEmpty": true,
"x": 123,
"y": 123,
"coordinate": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"geometryType": "<string>",
"boundary": "<unknown>",
"z": 123,
"m": 123,
"factory": {
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"coordinateSequenceFactory": {},
"srid": 123,
"elevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
},
"geometryServices": {
"geometryOverlay": {},
"geometryRelate": {},
"coordinateEqualityComparer": {},
"defaultSRID": 123,
"defaultCoordinateSequenceFactory": {},
"defaultPrecisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"defaultElevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
}
}
},
"userData": null,
"srid": 123,
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"numGeometries": 123,
"isSimple": true,
"isValid": true,
"area": 123,
"length": 123,
"centroid": "<unknown>",
"interiorPoint": "<unknown>",
"pointOnSurface": "<unknown>",
"envelope": "<unknown>",
"envelopeInternal": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
},
"isRectangle": true
},
"interiorPoint": {
"coordinateSequence": {
"dimension": 123,
"measures": 123,
"spatial": 123,
"hasZ": true,
"hasM": true,
"zOrdinateIndex": 123,
"mOrdinateIndex": 123,
"first": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"last": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"count": 123
},
"coordinates": [
{
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
],
"numPoints": 123,
"isEmpty": true,
"x": 123,
"y": 123,
"coordinate": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"geometryType": "<string>",
"boundary": "<unknown>",
"z": 123,
"m": 123,
"factory": {
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"coordinateSequenceFactory": {},
"srid": 123,
"elevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
},
"geometryServices": {
"geometryOverlay": {},
"geometryRelate": {},
"coordinateEqualityComparer": {},
"defaultSRID": 123,
"defaultCoordinateSequenceFactory": {},
"defaultPrecisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"defaultElevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
}
}
},
"userData": null,
"srid": 123,
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"numGeometries": 123,
"isSimple": true,
"isValid": true,
"area": 123,
"length": 123,
"centroid": "<unknown>",
"interiorPoint": "<unknown>",
"pointOnSurface": "<unknown>",
"envelope": "<unknown>",
"envelopeInternal": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
},
"isRectangle": true
},
"pointOnSurface": {
"coordinateSequence": {
"dimension": 123,
"measures": 123,
"spatial": 123,
"hasZ": true,
"hasM": true,
"zOrdinateIndex": 123,
"mOrdinateIndex": 123,
"first": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"last": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"count": 123
},
"coordinates": [
{
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
],
"numPoints": 123,
"isEmpty": true,
"x": 123,
"y": 123,
"coordinate": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"geometryType": "<string>",
"boundary": "<unknown>",
"z": 123,
"m": 123,
"factory": {
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"coordinateSequenceFactory": {},
"srid": 123,
"elevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
},
"geometryServices": {
"geometryOverlay": {},
"geometryRelate": {},
"coordinateEqualityComparer": {},
"defaultSRID": 123,
"defaultCoordinateSequenceFactory": {},
"defaultPrecisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"defaultElevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
}
}
},
"userData": null,
"srid": 123,
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"numGeometries": 123,
"isSimple": true,
"isValid": true,
"area": 123,
"length": 123,
"centroid": "<unknown>",
"interiorPoint": "<unknown>",
"pointOnSurface": "<unknown>",
"envelope": "<unknown>",
"envelopeInternal": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
},
"isRectangle": true
},
"boundary": "<unknown>",
"envelope": "<unknown>",
"envelopeInternal": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
},
"isRectangle": true
},
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"foundAtUtc": "2023-11-07T05:31:56Z",
"companyDataSourceTypeDescription": "<string>",
"countryLocalized": "<string>",
"orginalLabel": "<string>",
"fileId": 123,
"orginalAddressHash": "<string>",
"externalId": 123,
"countyCode": "<string>",
"municipalityCode": "<string>",
"belagenhetsadressObjektIdentitet": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"lastSeenAtUtc": "2023-11-07T05:31:56Z",
"addressId": 123,
"addressIntelligence": [
{
"addressIntelligenceId": 123,
"addressId": 123,
"addressIntelligenceTypeDescription": "<string>",
"addressIntelligenceSubType": "<string>",
"addressIntelligenceSubTypeDescription": "<string>",
"addressIntelligencePolicyId": 123,
"notes": "<string>",
"notesEn": "<string>",
"notesSv": "<string>",
"score": 123,
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastSeenAtUtc": "2023-11-07T05:31:56Z",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"externalId": 123,
"intelligenceNotesType": 123,
"notesValue1": "<string>",
"notesValue2": "<string>",
"notesValue3": "<string>",
"notesValue4": "<string>"
}
]
}
],
"personEvent": [
{
"personEventId": 123,
"personId": 123,
"eventDate": "2023-11-07T05:31:56Z",
"eventDescription": "<string>",
"eventMetadata": "<string>",
"externalId": 123,
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z"
}
],
"personBanPursueBusiness": [
{
"personBanPursueBusinessId": 123,
"personId": 123,
"banCode": "<string>",
"courtCode": 123,
"decisionDate": "2023-11-07T05:31:56Z",
"typeOfDecision": "<string>",
"decisionDateForTemporaryBan": "2023-11-07T05:31:56Z",
"followUpDate": "2023-11-07T05:31:56Z",
"banFromDate": "2023-11-07T05:31:56Z",
"banToDate": "2023-11-07T05:31:56Z",
"windedUpOperationsUntilDate": "2023-11-07T05:31:56Z",
"exemptionFromDate": "2023-11-07T05:31:56Z",
"exemptionToDate": "2023-11-07T05:31:56Z",
"recalledExemptionDate": "2023-11-07T05:31:56Z",
"repealedDate": "2023-11-07T05:31:56Z",
"hasCeasedDueToDeceased": true,
"notes": "<string>",
"isRemoved": true,
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"fileId": 123,
"externalId": 123
}
],
"personCreditQuestion": [
{
"personCreditQuestionId": 123,
"personId": 123,
"questioner": "<string>",
"amount": 123,
"iso4217CurrencyCode3": "<string>",
"externalId": 123,
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z"
}
],
"personIdentityNumber": [
{
"personIdentityNumberId": 123,
"personId": 123,
"personIdentityNumberTypeDescription": "<string>",
"personalIdentityNumber": "<string>",
"isBlocked": true,
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"fileId": 123,
"externalId": 123,
"spar_NotificationRecordId": 123,
"blockedByReason": "<string>",
"blockedByReasonDescription": "<string>"
}
]
}
}
],
"bolagsverket_BeneficialOwnerRepresentative": [
{
"bolagsverket_BeneficialOwnerRepresentativeId": 123,
"bolagsverket_BeneficialOwnerNotificationId": 123,
"personId": 123,
"personalIdentityNumber": "<string>",
"firstName": "<string>",
"middleName": "<string>",
"lastName": "<string>",
"citizenshipCountryCode": "<string>",
"countryOfResidenceCode": "<string>"
}
],
"bolagsverket_BeneficialOwnerSuspectNotification": {
"bolagsverket_BeneficialOwnerSuspectNotificationId": 123,
"registrationDate": "2023-11-07T05:31:56Z",
"caseNumber": 123,
"caseYear": 123,
"originCaseNumber": 123,
"originCaseYear": 123,
"suspectCode": 123,
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z"
}
}
]Companies
Get beneficial owners for a company
Returns the Bolagsverket beneficial-owner notifications for the company, with owners, representatives, govern codes, and any flagged suspect notifications. Pro tier has personal identity numbers masked.
GET
/
companies
/
{id}
/
beneficial-owners
Get beneficial owners for a company
curl --request GET \
--url https://lens-api.tic.io/companies/{id}/beneficial-owners \
--header 'x-api-key: <api-key>'import requests
url = "https://lens-api.tic.io/companies/{id}/beneficial-owners"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://lens-api.tic.io/companies/{id}/beneficial-owners', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://lens-api.tic.io/companies/{id}/beneficial-owners",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://lens-api.tic.io/companies/{id}/beneficial-owners"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://lens-api.tic.io/companies/{id}/beneficial-owners")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://lens-api.tic.io/companies/{id}/beneficial-owners")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"bolagsverket_BeneficialOwnerNotificationId": 123,
"registration": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"notificationDate": "2023-11-07T05:31:56Z",
"fromDate": "2023-11-07T05:31:56Z",
"caseNumber": 123,
"caseYear": 123,
"registrationNumber": "<string>",
"companyName": "<string>",
"companyCode": "<string>",
"companyCodeDescription": "<string>",
"statusCode": "<string>",
"statusDescription": "<string>",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"bolagsverket_BeneficialOwnerSuspectNotificationId": 123,
"companyId": 123,
"bolagsverket_BeneficialOwner": [
{
"bolagsverket_BeneficialOwnerId": 123,
"bolagsverket_BeneficialOwnerNotificationId": 123,
"personId": 123,
"personalIdentityNumber": "<string>",
"fallbackPersonalIdentityNumber": "<string>",
"firstName": "<string>",
"middleName": "<string>",
"lastName": "<string>",
"fallbackName": "<string>",
"citizenshipCountryCode": "<string>",
"countryOfResidenceCode": "<string>",
"extentCode": "<string>",
"extentDescription": "<string>",
"bolagsverket_BeneficialOwnerGovern": [
{
"bolagsverket_BeneficialOwnerGovernId": 123,
"bolagsverket_BeneficialOwnerId": 123,
"governCode": "<string>",
"governDescription": "<string>",
"name": "<string>",
"registrationNumber": "<string>",
"companyId": 123
}
],
"person": {
"personId": 123,
"nationalityCountryCodeAlpha2": "<string>",
"personalIdentityNumber": "<string>",
"givenName": "<string>",
"firstName": "<string>",
"middleName": "<string>",
"lastName": "<string>",
"fullName": "<string>",
"isProtected": true,
"citizenshipCountryCode": "<string>",
"countryOfResidenceCode": "<string>",
"fallbackName": "<string>",
"fallbackPersonalIdentityNumber": "<string>",
"isMarried": true,
"isCoordinationNumber": true,
"birthday": "<string>",
"age": 123,
"kivraUpdatedAt": "2023-11-07T05:31:56Z",
"kivra": true,
"personAddress": [
{
"personAddressId": 123,
"personId": 123,
"addressTypeDescription": "<string>",
"label": "<string>",
"houseNumber": "<string>",
"co": "<string>",
"street": "<string>",
"postalCode": "<string>",
"city": "<string>",
"state": "<string>",
"county": "<string>",
"district": "<string>",
"countryName": "<string>",
"countryCodeAlpha3": "<string>",
"locality": "<string>",
"localityType": "<string>",
"position": {
"factory": {
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"coordinateSequenceFactory": {},
"srid": 123,
"elevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
},
"geometryServices": {
"geometryOverlay": {},
"geometryRelate": {},
"coordinateEqualityComparer": {},
"defaultSRID": 123,
"defaultCoordinateSequenceFactory": {},
"defaultPrecisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"defaultElevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
}
}
},
"userData": null,
"srid": 123,
"geometryType": "<string>",
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"coordinate": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"coordinates": [
{
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
],
"numPoints": 123,
"numGeometries": 123,
"isSimple": true,
"isValid": true,
"isEmpty": true,
"area": 123,
"length": 123,
"centroid": {
"coordinateSequence": {
"dimension": 123,
"measures": 123,
"spatial": 123,
"hasZ": true,
"hasM": true,
"zOrdinateIndex": 123,
"mOrdinateIndex": 123,
"first": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"last": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"count": 123
},
"coordinates": [
{
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
],
"numPoints": 123,
"isEmpty": true,
"x": 123,
"y": 123,
"coordinate": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"geometryType": "<string>",
"boundary": "<unknown>",
"z": 123,
"m": 123,
"factory": {
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"coordinateSequenceFactory": {},
"srid": 123,
"elevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
},
"geometryServices": {
"geometryOverlay": {},
"geometryRelate": {},
"coordinateEqualityComparer": {},
"defaultSRID": 123,
"defaultCoordinateSequenceFactory": {},
"defaultPrecisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"defaultElevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
}
}
},
"userData": null,
"srid": 123,
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"numGeometries": 123,
"isSimple": true,
"isValid": true,
"area": 123,
"length": 123,
"centroid": "<unknown>",
"interiorPoint": "<unknown>",
"pointOnSurface": "<unknown>",
"envelope": "<unknown>",
"envelopeInternal": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
},
"isRectangle": true
},
"interiorPoint": {
"coordinateSequence": {
"dimension": 123,
"measures": 123,
"spatial": 123,
"hasZ": true,
"hasM": true,
"zOrdinateIndex": 123,
"mOrdinateIndex": 123,
"first": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"last": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"count": 123
},
"coordinates": [
{
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
],
"numPoints": 123,
"isEmpty": true,
"x": 123,
"y": 123,
"coordinate": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"geometryType": "<string>",
"boundary": "<unknown>",
"z": 123,
"m": 123,
"factory": {
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"coordinateSequenceFactory": {},
"srid": 123,
"elevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
},
"geometryServices": {
"geometryOverlay": {},
"geometryRelate": {},
"coordinateEqualityComparer": {},
"defaultSRID": 123,
"defaultCoordinateSequenceFactory": {},
"defaultPrecisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"defaultElevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
}
}
},
"userData": null,
"srid": 123,
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"numGeometries": 123,
"isSimple": true,
"isValid": true,
"area": 123,
"length": 123,
"centroid": "<unknown>",
"interiorPoint": "<unknown>",
"pointOnSurface": "<unknown>",
"envelope": "<unknown>",
"envelopeInternal": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
},
"isRectangle": true
},
"pointOnSurface": {
"coordinateSequence": {
"dimension": 123,
"measures": 123,
"spatial": 123,
"hasZ": true,
"hasM": true,
"zOrdinateIndex": 123,
"mOrdinateIndex": 123,
"first": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"last": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"count": 123
},
"coordinates": [
{
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
],
"numPoints": 123,
"isEmpty": true,
"x": 123,
"y": 123,
"coordinate": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
},
"geometryType": "<string>",
"boundary": "<unknown>",
"z": 123,
"m": 123,
"factory": {
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"coordinateSequenceFactory": {},
"srid": 123,
"elevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
},
"geometryServices": {
"geometryOverlay": {},
"geometryRelate": {},
"coordinateEqualityComparer": {},
"defaultSRID": 123,
"defaultCoordinateSequenceFactory": {},
"defaultPrecisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"defaultElevationModel": {
"extent": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
}
}
}
},
"userData": null,
"srid": 123,
"precisionModel": {
"isFloating": true,
"maximumSignificantDigits": 123,
"scale": 123,
"gridSize": 123
},
"numGeometries": 123,
"isSimple": true,
"isValid": true,
"area": 123,
"length": 123,
"centroid": "<unknown>",
"interiorPoint": "<unknown>",
"pointOnSurface": "<unknown>",
"envelope": "<unknown>",
"envelopeInternal": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
},
"isRectangle": true
},
"boundary": "<unknown>",
"envelope": "<unknown>",
"envelopeInternal": {
"isNull": true,
"width": 123,
"height": 123,
"diameter": 123,
"minX": 123,
"maxX": 123,
"minY": 123,
"maxY": 123,
"area": 123,
"minExtent": 123,
"maxExtent": 123,
"centre": {
"x": 123,
"y": 123,
"z": 123,
"m": 123,
"coordinateValue": "<unknown>",
"isValid": true
}
},
"isRectangle": true
},
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"foundAtUtc": "2023-11-07T05:31:56Z",
"companyDataSourceTypeDescription": "<string>",
"countryLocalized": "<string>",
"orginalLabel": "<string>",
"fileId": 123,
"orginalAddressHash": "<string>",
"externalId": 123,
"countyCode": "<string>",
"municipalityCode": "<string>",
"belagenhetsadressObjektIdentitet": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"lastSeenAtUtc": "2023-11-07T05:31:56Z",
"addressId": 123,
"addressIntelligence": [
{
"addressIntelligenceId": 123,
"addressId": 123,
"addressIntelligenceTypeDescription": "<string>",
"addressIntelligenceSubType": "<string>",
"addressIntelligenceSubTypeDescription": "<string>",
"addressIntelligencePolicyId": 123,
"notes": "<string>",
"notesEn": "<string>",
"notesSv": "<string>",
"score": 123,
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastSeenAtUtc": "2023-11-07T05:31:56Z",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"externalId": 123,
"intelligenceNotesType": 123,
"notesValue1": "<string>",
"notesValue2": "<string>",
"notesValue3": "<string>",
"notesValue4": "<string>"
}
]
}
],
"personEvent": [
{
"personEventId": 123,
"personId": 123,
"eventDate": "2023-11-07T05:31:56Z",
"eventDescription": "<string>",
"eventMetadata": "<string>",
"externalId": 123,
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z"
}
],
"personBanPursueBusiness": [
{
"personBanPursueBusinessId": 123,
"personId": 123,
"banCode": "<string>",
"courtCode": 123,
"decisionDate": "2023-11-07T05:31:56Z",
"typeOfDecision": "<string>",
"decisionDateForTemporaryBan": "2023-11-07T05:31:56Z",
"followUpDate": "2023-11-07T05:31:56Z",
"banFromDate": "2023-11-07T05:31:56Z",
"banToDate": "2023-11-07T05:31:56Z",
"windedUpOperationsUntilDate": "2023-11-07T05:31:56Z",
"exemptionFromDate": "2023-11-07T05:31:56Z",
"exemptionToDate": "2023-11-07T05:31:56Z",
"recalledExemptionDate": "2023-11-07T05:31:56Z",
"repealedDate": "2023-11-07T05:31:56Z",
"hasCeasedDueToDeceased": true,
"notes": "<string>",
"isRemoved": true,
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"fileId": 123,
"externalId": 123
}
],
"personCreditQuestion": [
{
"personCreditQuestionId": 123,
"personId": 123,
"questioner": "<string>",
"amount": 123,
"iso4217CurrencyCode3": "<string>",
"externalId": 123,
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z"
}
],
"personIdentityNumber": [
{
"personIdentityNumberId": 123,
"personId": 123,
"personIdentityNumberTypeDescription": "<string>",
"personalIdentityNumber": "<string>",
"isBlocked": true,
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"fileId": 123,
"externalId": 123,
"spar_NotificationRecordId": 123,
"blockedByReason": "<string>",
"blockedByReasonDescription": "<string>"
}
]
}
}
],
"bolagsverket_BeneficialOwnerRepresentative": [
{
"bolagsverket_BeneficialOwnerRepresentativeId": 123,
"bolagsverket_BeneficialOwnerNotificationId": 123,
"personId": 123,
"personalIdentityNumber": "<string>",
"firstName": "<string>",
"middleName": "<string>",
"lastName": "<string>",
"citizenshipCountryCode": "<string>",
"countryOfResidenceCode": "<string>"
}
],
"bolagsverket_BeneficialOwnerSuspectNotification": {
"bolagsverket_BeneficialOwnerSuspectNotificationId": 123,
"registrationDate": "2023-11-07T05:31:56Z",
"caseNumber": 123,
"caseYear": 123,
"originCaseNumber": 123,
"originCaseYear": 123,
"suspectCode": 123,
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z"
}
}
]Pro+ tier
Authorizations
Path Parameters
Internal company ID
Response
List of beneficial-owner notifications
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
⌘I