Bulk Remove Companies
Remove companies from tracking
DELETE /api/v1/company/{GROUP_NAME} HTTP/1.1
Replace GROUP_NAME with the Group Name under which the companies have to be removed
Request body
{
"companyIds": ["company_id"]
}
Param | Mandatory | Description |
---|---|---|
company_id | Y | Array of Intellizence Company Ids that you would like to remove |
Response body
{
"nonExistingCompanyIds": ["company_id"],
"nonTrackedCompanyIds": ["company_id"],
"removedCompanyIds": ["company_id"]
}
Param | Description |
---|---|
nonExistingCompanyIds | Array of Company Ids which are not existing in the Intellizence database |
nonTrackedCompanyIds | Array of Company Ids which are not been tracked |
removedCompanyIds | Array of Company Ids which are removed |
Last modified 1yr ago