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"
}

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 aplicación.

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