GET
/
datasets
/
companies
/
{companyId}
/
addresses
curl --request GET \
  --url https://api.tic.io/datasets/companies/{companyId}/addresses \
  --header 'x-api-key: <api-key>'
[
  {
    "companyAddressId": 123,
    "addressType": "mailAddress",
    "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>",
    "latitude": 123,
    "longitude": 123,
    "lastUpdatedAtUtc": "2023-11-07T05:31:56Z"
  }
]

Authorizations

x-api-key
string
header
required

Path Parameters

companyId
integer
required

The company id

Response

200 - application/json
OK
companyAddressId
integer
addressType
enum<string>
Available options:
mailAddress,
visitingAddress,
bothMailAndVisitingAddress,
registeredAddress
label
string | null
houseNumber
string | null
co
string | null
street
string | null
postalCode
string | null
city
string | null
state
string | null
county
string | null
district
string | null
countryName
string | null
countryCodeAlpha3
string | null
locality
string | null
localityType
string | null
latitude
number | null
longitude
number | null
lastUpdatedAtUtc
string