Saltar al contenido principal
PUT
/
webhooks
/
v3
/
{appId}
/
settings
Actualizar configuración de webhook
curl --request PUT \
  --url https://api.hubapi.com/webhooks/v3/{appId}/settings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "targetUrl": "https://www.example.com/hubspot/target",
  "throttling": {
    "maxConcurrentRequests": 10,
    "period": "SECONDLY"
  }
}
'
{
  "createdAt": "2020-01-24T16:27:59Z",
  "targetUrl": "https://www.example.com/hubspot/target",
  "throttling": {
    "maxConcurrentRequests": 10,
    "period": "SECONDLY"
  },
  "updatedAt": "2020-01-24T16:32:43Z"
}

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

New webhook settings to configure for the app, or updated settings to replace existing configuration.

New or updated webhook settings for an app.

targetUrl
string
requerido

Una URL pública para que HubSpot llame donde se entregarán las cargas útiles del evento. Esta URL debe ser accesible para recibir notificaciones de eventos.

throttling
object
requerido

Configuration details for webhook throttling.

Respuesta

successful operation

Webhook settings for an app.

createdAt
string<date-time>
requerido

Cuando se creó esta suscripción, con formato de cadena de fecha y hora.

targetUrl
string
requerido

Una URL pública para que HubSpot llame donde se entregarán las cargas útiles del evento.

throttling
object
requerido

Configuration details for webhook throttling.

updatedAt
string<date-time>

Cuando se actualizó por última vez esta suscripción, con formato de cadena de fecha y hora.

Última modificación el 13 de abril de 2026