Skip to main content
PUT
https://api.bizzy.ai
/
v1
/
lists
/
{id}
/
companies
Bulk Companies
curl --request PUT \
  --url https://api.bizzy.ai/v1/lists/{id}/companies \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Successfully added 99 companies to the list",
  "failed": [ // Example error
    {
      "parameters": {
        "companyNumber": "123",
      },
      "message": "Company not found"
    }
  ]
}
This only works for static lists!
The accuracy of the matching process improves with more detailed information. Providing additional parameters can significantly enhance the precision of the results.

Request

At least one parameter is needed per company!

Body

companies
array
You can add up to 100 companies to a list at once.
{
  "success": true,
  "message": "Successfully added 99 companies to the list",
  "failed": [ // Example error
    {
      "parameters": {
        "companyNumber": "123",
      },
      "message": "Company not found"
    }
  ]
}