メインコンテンツへスキップ
GET
/
marketing
/
v3
/
marketing-events
/
participations
/
{externalAccountId}
/
{externalEventId}
/
breakdown
参加内訳を、マーケティングイベントの外部IDで読み取る
curl --request GET \
  --url https://api.hubapi.com/marketing/v3/marketing-events/participations/{externalAccountId}/{externalEventId}/breakdown \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "associations": {
        "contact": {
          "contactId": "<string>",
          "email": "<string>",
          "firstname": "<string>",
          "lastname": "<string>"
        },
        "marketingEvent": {
          "marketingEventId": "<string>",
          "name": "<string>",
          "externalAccountId": "<string>",
          "externalEventId": "<string>"
        }
      },
      "createdAt": "2023-11-07T05:31:56Z",
      "id": "<string>",
      "properties": {
        "attendanceState": "ATTENDED",
        "occurredAt": 123,
        "attendanceDurationSeconds": 123,
        "attendancePercentage": "<string>"
      }
    }
  ],
  "total": 123,
  "paging": {
    "next": {
      "after": "<string>",
      "link": "<string>"
    }
  }
}
次のいずれかの製品またはそれ以上が必要です。
Marketing HubMarketing Hub -無料ツール
Sales HubSales Hub -無料ツール
Service HubService Hub -無料ツール
Content HubContent Hub -無料ツール

承認

Authorization
string
header
必須

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

パスパラメータ

externalAccountId
string
必須

外部イベントアプリケーションでこのマーケティングイベントに関連付けられているaccountId。

externalEventId
string
必須

外部イベントアプリケーションのマーケティングイベントのID。

クエリパラメータ

after
string

最後に取得した項目の位置を示すカーソル。

contactIdentifier
string

コンタクトの識別子。Eメールまたは内部IDです。

limit
integer<int32>
デフォルト:10

返信サイズの上限。デフォルトは10で最大値は100です

state
string

参加状態値。REGISTERED、CANCELLED、ATTENDED、NO_SHOWのいずれかです

レスポンス

successful operation

results
object[]
必須
total
integer<int32>
必須

要素の合計金額

paging
object
Last modified on December 9, 2025