Skip to main content
POST
/
v2
/
companies
/
updates
Bulk Updates
curl --request POST \
  --url https://api.bizzy.ai/v2/companies/updates \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "limit": 123,
  "offset": 123
}
'
[
    {
        "identifier": {
            "countryCode": "BE",
            "companyId": "1778186251",
            "name": "Bizzy"
        },
        "data": {
            "updates": [
                {
                    "id": "2127510865",
                    "type": "EXPANSION",
                    "title": "Business intelligence platform Bizzy plans first steps abroad"
                }
            ]
        },
        "pagination": {
            "limit": 4,
            "offset": 0,
            "total": 1
        },
        "message": null
    },
    { // Example error
        "identifier": {
            "countryCode": "BE",
            "companyId": "123",
            "name": ""
        },
        "data": null,
        "pagination": null,
        "message": "Company not found"
    },
]

Request

Accept-Language
string
default:"EN"
  • NL: Dutch - FR: French - EN: English

Body

companies
array
You can request up to 100 companies at once.
limit
number
default:"4"
Number of items to return per page. (max 500)
offset
number
default:"0"
Number of items to skip. companies.length x limit may not exceed 500.

Response

The same limit and offset are shared over all companies.
[
    {
        "identifier": {
            "countryCode": "BE",
            "companyId": "1778186251",
            "name": "Bizzy"
        },
        "data": {
            "updates": [
                {
                    "id": "2127510865",
                    "type": "EXPANSION",
                    "title": "Business intelligence platform Bizzy plans first steps abroad"
                }
            ]
        },
        "pagination": {
            "limit": 4,
            "offset": 0,
            "total": 1
        },
        "message": null
    },
    { // Example error
        "identifier": {
            "countryCode": "BE",
            "companyId": "123",
            "name": ""
        },
        "data": null,
        "pagination": null,
        "message": "Company not found"
    },
]