Skip to main content
PUT
/
webhooks
/
2026-03
/
{appId}
/
settings
Update webhook settings
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.com/docs/llms.txt

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

Supported products

Authorizations

Authorization
string
header
required

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

Path Parameters

appId
integer<int32>
required

The identifier for the app.

Body

application/json
targetUrl
string
required

The URL to which webhook events will be sent. It is a string.

throttling
object
required

Response

successful operation

createdAt
string<date-time>
required

The date and time when the webhook settings were created, in ISO 8601 format.

targetUrl
string
required

The URL to which the webhook events will be sent. It is a string.

throttling
object
required
updatedAt
string<date-time>

The date and time when the webhook settings were last updated, in ISO 8601 format.

Last modified on April 14, 2026