Skip to main content
POST
/
webhooks
/
v3
/
{appId}
/
subscriptions
/
batch
/
update
Batch create event subscriptions
curl --request POST \
  --url 'https://api.hubapi.com/webhooks/v3/{appId}/subscriptions/batch/update?hapikey=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "inputs": [
    {
      "active": true,
      "id": 12
    }
  ]
}
'
{
  "completedAt": "2020-04-17T02:19:26.283Z",
  "results": [
    {
      "active": true,
      "createdAt": "2019-06-06T16:56:16.652Z",
      "eventType": "contact.propertyChange",
      "id": "1234",
      "propertyName": "firstname",
      "updatedAt": "2019-08-06T16:56:16.652Z"
    },
    {
      "active": false,
      "createdAt": "2019-06-06T16:56:16.652Z",
      "eventType": "contact.create",
      "id": "4567",
      "updatedAt": "2019-08-06T16:56:16.652Z"
    }
  ],
  "startedAt": "2020-04-17T02:19:26.256Z",
  "status": "COMPLETE"
}

Supported products

Authorizations

hapikey
string
query
required

Path Parameters

appId
integer<int32>
required

The ID of the target app.

Body

application/json

Updated details for the specified subscriptions.

inputs
object[]
required

Response

successful operation

completedAt
string<date-time>
required

The date and time when the batch operation was completed.

results
object[]
required

The list of results from the batch operation.

startedAt
string<date-time>
required

The date and time when the batch operation started.

status
enum<string>
required

The current status of the batch operation, which can be PENDING, PROCESSING, CANCELED, or COMPLETE.

Available options:
CANCELED,
COMPLETE,
PENDING,
PROCESSING
errors
object[]

A collection of related links associated with the batch operation.

numErrors
integer<int32>
requestedAt
string<date-time>

The date and time when the batch operation was requested.

Last modified on March 30, 2026