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"]
}
ParamMandatoryDescription

company_ids

Y

Array of Intellizence Company Ids that you would like to add. If the GROUP_NAME does not exist, it would be created and companies will be added.

Response body

{
            "status": status,
            "addedCompanyIds": ["company_id"]
}                               
ParamDescription

addedCompanyIds

Array of Company Ids which are added

status

status codes -

200 - Success 201 - You are adding more companies than allowed

Last updated