メインコンテンツへスキップ
PUT
/
webhooks
/
v3
/
{appId}
/
settings
Webhook設定を更新
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"
}
サポートされる製品
次のいずれかの製品またはそれ以上が必要です。
Marketing HubMarketing HubProfessional
Sales HubSales HubProfessional
Service HubService HubProfessional
Content HubContent HubStarter

承認

hapikey
string
query
必須

パスパラメータ

appId
integer<int32>
必須

アプリのID。

ボディ

application/json

New or updated webhook settings for an app.

targetUrl
string
必須

イベントペイロードが配信される、HubSpotがコールする公開URL。これらのイベントペイロードの形式の詳細については、link-so-some-docを参照してください。

throttling
object
必須

Configuration details for webhook throttling.

レスポンス

successful operation

Webhook settings for an app.

createdAt
string<date-time>
必須

この配信登録が作成された日時。[Unixエポック](#)からのミリ秒数の形式になります。

targetUrl
string
必須

イベントペイロードが配信される、HubSpotがコールする公開URL。これらのイベントペイロードの形式の詳細については、link-so-some-docを参照してください。

throttling
object
必須

Configuration details for webhook throttling.

updatedAt
string<date-time>

この配信登録が最後に更新された日時。[Unixエポック](#)からのミリ秒数の形式になります。

Last modified on January 23, 2026