Batch

Batch create event subscriptions

Batch create event subscriptions for the specified app.

post/webhooks/v3/{appId}/subscriptions/batch/update

Path parameters

appIdinteger required

The ID of the target app.

Request body

Example request

{
  "inputs": [
    {
      "active": true,
      "id": 12
    }
  ]
}

Response

successful operation

completedAtstring date-time required

The timestamp when the batch operation completed, in ISO 8601 format.

linksobject

An object containing URLs for related resources or operations.

requestedAtstring date-time

The timestamp when the batch operation was requested, in ISO 8601 format.

startedAtstring date-time required

The timestamp when the batch operation started processing, in ISO 8601 format.

status'CANCELED' | 'COMPLETE' | 'PENDING' | 'PROCESSING' required

The status of the batch operation. Accepted values are 'PENDING', 'PROCESSING', 'CANCELED', or 'COMPLETE'.

Changes