POST
/
companies
/
v1
/
batch-async
/
update
Update a group of companies
curl --request POST \
  --url https://api.hubapi.com/companies/v1/batch-async/update \
  --header 'Content-Type: application/json' \
  --data '[
  {
    "objectId": "<string>",
    "properties": [
      {
        "name": "<string>",
        "value": "<string>"
      }
    ]
  }
]'
"\nExample POST URL:\nhttps://api.hubapi.com/companies/v1/batch-async/update\n\nExample POST body:\n[\n  {\n    \"objectId\": 17433026,\n    \"properties\": [\n      {\n        \"name\": \"name\",\n        \"value\": \"Updated Company Name\"\n      }\n    ]\n  },\n  {\n    \"objectId\": 16962705,\n    \"properties\": [\n      {\n        \"name\": \"name\",\n        \"value\": \"Biotech Company Name\"\n      },\n      {\n        \"name\": \"industry\",\n        \"value\": \"Biotechnology\"\n      }\n    ]\n  }\n]\n\nExample response:\nReturns a 202 Accepted response on success."

Body

application/json · object[]

The body is of type object[].

Response

200 - application/json

Successful response - Update a group of existing company records by their companyId

The response is of type object.