Zum Hauptinhalt springen
PUT
/
webhooks
/
v3
/
{appId}
/
settings
Webhook-Einstellungen aktualisieren
curl --request PUT \
  --url 'https://api.hubapi.com/webhooks/v3/{appId}/settings?hapikey=' \
  --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"
}

Unterstützte Produkte

Erfordert eines der folgenden Produkte oder höher.
Marketing HubMarketing Hub -Kostenlos
Sales HubSales Hub -Kostenlos
Service HubService Hub -Kostenlos
Content HubContent Hub -Kostenlos

Autorisierungen

hapikey
string
query
erforderlich

Pfadparameter

appId
integer<int32>
erforderlich

Die ID der Ziel-App.

Body

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
erforderlich

Eine öffentlich verfügbare URL, die von HubSpot aufgerufen wird und an die Event-Payloads gesendet werden. In link-so-some-doc finden Sie Einzelheiten über das Format dieser Event-Payloads.

throttling
object
erforderlich

Configuration details for webhook throttling.

Antwort

successful operation

Webhook settings for an app.

createdAt
string<date-time>
erforderlich

Wann dieses Abonnement erstellt wurde. Formatiert als Millisekunden ab der Unix-Epoche.

targetUrl
string
erforderlich

Eine öffentlich verfügbare URL, die von HubSpot aufgerufen wird und an die Event-Payloads gesendet werden. In link-so-some-doc finden Sie Einzelheiten über das Format dieser Event-Payloads.

throttling
object
erforderlich

Configuration details for webhook throttling.

updatedAt
string<date-time>

Wann dieses Abonnement zuletzt aktualisiert wurde. Formatiert als Millisekunden ab der Unix-Epoche.

Last modified on March 24, 2026