メインコンテンツへスキップ
GET
/
webhooks
/
v3
/
{appId}
/
subscriptions
イベント配信登録を読み取る
curl --request GET \
  --url https://api.hubapi.com/webhooks/v3/{appId}/subscriptions \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "active": true,
      "createdAt": "2019-10-30T03:30:17.883Z",
      "eventType": "contact.propertyChange",
      "id": "12",
      "propertyName": "email",
      "updatedAt": "2019-11-30T03:30:17.883Z"
    },
    {
      "active": true,
      "createdAt": "2019-10-30T03:30:17.883Z",
      "eventType": "deal.creation",
      "id": "13",
      "updatedAt": "2019-11-30T03:30:17.883Z"
    }
  ]
}

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。

レスポンス

successful operation

List of event subscriptions for your app

results
object[]
必須

アプリ用に設定された、有効および一時停止中の全てのイベント配信登録を含む配列。配列内の各項目はSubscriptionResponseオブジェクトです。

Last modified on April 13, 2026