Bulk Add Companies
Add companies to track
POST /api/v1/company/{GROUP_NAME} HTTP/1.1
Replace GROUP_NAME with the Group Name under which the companies have to be added
Request body
{
"companyIds": ["company_id"]
}
Param | Mandatory | Description |
---|---|---|
company_id | Y | Array of Intellizence Company Ids that you would like to add |
Response body
{
"nonExistingCompanyIds": ["company_id"],
"alreadyTrackedCompanyIds": ["company_id"],
"addedCompanyIds": ["company_id"]
}
Param | Description |
---|---|
nonExistingCompanyIds | Array of Company Ids which are not existing in the Intellizence database |
alreadyTrackedCompanyIds | Array of Company Ids which are already been tracked |
addedCompanyIds | Array of Company Ids which are added |
Last modified 8mo ago