POST
/
v2
/
monitors
Add monitoring for a company
curl --request POST \
  --url https://api.topograph.co/v2/monitors \
  --header 'Content-Type: application/json' \
  --data '{
  "companyId": "123456789",
  "countryCode": "DE"
}'
{
  "id": "cmfzlu1dt000j12ldeqrfszq0",
  "companyId": "123456789",
  "countryCode": "DE"
}

Body

application/json
companyId
string
required

The company ID to monitor

Example:

"123456789"

countryCode
string
required

The country code for the company

Example:

"DE"

Response

Monitor created or retrieved

id
string
required

The unique identifier for the monitor

Example:

"cmfzlu1dt000j12ldeqrfszq0"

companyId
string
required

The company ID being monitored

Example:

"123456789"

countryCode
string
required

The country code for the monitored company

Example:

"DE"