メインコンテンツへスキップ
PUT
/
webhooks
/
v3
/
{appId}
/
settings
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"
}

Documentation Index

Fetch the complete documentation index at: https://developers.hubspot.jp/docs/llms.txt

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

Supported products

承認

Authorization
string
header
必須

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

パスパラメータ

appId
integer<int32>
必須

ターゲットアプリのID。

ボディ

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
必須

イベントペイロードが配信される、HubSpotが呼び出す公開URL。このURLは、イベント通知を受信できる必要があります。

throttling
object
必須

Configuration details for webhook throttling.

レスポンス

successful operation

Webhook settings for an app.

createdAt
string<date-time>
必須

日付-時刻文字列として書式設定される、この配信登録が作成された日時。

targetUrl
string
必須

イベントペイロードが配信される、コールするHubSpotの一般公開されているURL。

throttling
object
必須

Configuration details for webhook throttling.

updatedAt
string<date-time>

日付-時刻文字列として書式設定される、この配信登録が最後に更新された日時。

Last modified on April 13, 2026