Saltar al contenido principal
PUT
/
webhooks
/
2026-03
/
{appId}
/
settings
Actualizar configuración de webhook
curl --request PUT \
  --url https://api.hubapi.com/webhooks/2026-03/{appId}/settings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "targetUrl": "<string>",
  "throttling": {
    "maxConcurrentRequests": 123
  }
}
'
{
  "createdAt": "2023-11-07T05:31:56Z",
  "targetUrl": "<string>",
  "throttling": {
    "maxConcurrentRequests": 123
  },
  "updatedAt": "2023-11-07T05:31:56Z"
}

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 identificador de la app.

Cuerpo

application/json
targetUrl
string
requerido

La URL a la que se enviarán los eventos de webhook. Es una cadena.

throttling
object
requerido

Respuesta

successful operation

createdAt
string<date-time>
requerido

La fecha y hora en que se creó la configuración de webhook, en formato ISO 8601.

targetUrl
string
requerido

La URL a la que se enviarán los eventos de webhook. Es una cadena.

throttling
object
requerido
updatedAt
string<date-time>

La fecha y hora en que se actualizaron por última vez los ajustes del webhook, en formato ISO 8601.

Last modified on April 13, 2026