curl --request GET \
--url https://api.tic.io/datasets/companies/{companyId}/domains \
--header 'x-api-key: <api-key>'
[
{
"companyDomainId": 123,
"domainId": 123,
"domainName": "<string>",
"monitoringEnabled": true,
"lastErrorMessage": "<string>",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastSeenAtUtc": "2023-11-07T05:31:56Z"
}
]
Lists all domains associated with a company
curl --request GET \
--url https://api.tic.io/datasets/companies/{companyId}/domains \
--header 'x-api-key: <api-key>'
[
{
"companyDomainId": 123,
"domainId": 123,
"domainName": "<string>",
"monitoringEnabled": true,
"lastErrorMessage": "<string>",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastSeenAtUtc": "2023-11-07T05:31:56Z"
}
]
The company id
OK
The response is of type object[]
.