Saltar al contenido principal
POST
/
webhooks
/
v3
/
{appId}
/
subscriptions
/
batch
/
update
Crear suscripciones a eventos en lote
curl --request POST \
  --url https://api.hubapi.com/webhooks/v3/{appId}/subscriptions/batch/update \
  --header 'Authorization: Bearer <token>' \
  --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"
}

Documentation Index

Fetch the complete documentation index at: https://developers.hubspot.es/docs/llms.txt

Use this file to discover all available pages before exploring further.

Supported products

Autorizaciones

Authorization
string
header
requerido

The access token received from the authorization server in the OAuth 2.0 flow.

Parámetros de ruta

appId
integer<int32>
requerido

El ID de la aplicación de destino.

Cuerpo

application/json

Updated details for the specified subscriptions.

inputs
object[]
requerido

Respuesta

successful operation

completedAt
string<date-time>
requerido

La fecha y la hora en que se completó la operación por lotes.

results
object[]
requerido

La lista de resultados de la operación por lotes.

startedAt
string<date-time>
requerido

La fecha y la hora en que se inició la operación por lotes.

status
enum<string>
requerido

El estado actual de la operación por lotes, puede ser PENDIENTE, PROCESANDO, CANCELADO o COMPLETADO.

Opciones disponibles:
CANCELED,
COMPLETE,
PENDING,
PROCESSING

Una colección de enlaces asociados con la operación por lotes.

requestedAt
string<date-time>

La fecha y la hora en que se solicitó la operación en lote.

Last modified on April 13, 2026