Zum Hauptinhalt springen
GET
/
marketing
/
v3
/
marketing-events
/
participations
/
contacts
/
{contactIdentifier}
/
breakdown
参加内訳をコンタクトIDで読み取る
curl --request GET \
  --url https://api.hubapi.com/marketing/v3/marketing-events/participations/contacts/{contactIdentifier}/breakdown \
  --header 'Authorization: Bearer <token>'
{
  "paging": {
    "next": {
      "after": "<string>",
      "link": "<string>"
    }
  },
  "results": [
    {
      "associations": {
        "contact": {
          "contactId": "<string>",
          "email": "<string>",
          "firstname": "<string>",
          "lastname": "<string>"
        },
        "marketingEvent": {
          "externalAccountId": "<string>",
          "externalEventId": "<string>",
          "marketingEventId": "<string>",
          "name": "<string>"
        }
      },
      "createdAt": "2023-11-07T05:31:56Z",
      "id": "<string>",
      "properties": {
        "attendanceDurationSeconds": 123,
        "attendancePercentage": "<string>",
        "attendanceState": "ATTENDED",
        "occurredAt": 123
      }
    }
  ],
  "total": 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

contactIdentifier
string
required

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

Query Parameters

after
string

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

limit
integer
default:10

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

state
string

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

Response

successful operation

results
object[]
required
total
integer
required
paging
object