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

Authorizations

Authorization
string
header
required

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

Path Parameters

marketingEventId
integer
required

HubSpotのマーケティングイベントの内部ID。

Query Parameters

contactIdentifier
string

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

state
string

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

limit
integer
default:10

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

after
string

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

Response

successful operation

total
integer
required
results
object[]
required
paging
object
I