Zum Hauptinhalt springen
GET
/
marketing
/
v3
/
marketing-events
/
participations
/
{externalAccountId}
/
{externalEventId}
/
breakdown
Indikatoren für die Aufschlüsselung anhand der externen ID des Marketingevents lesen
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>"
    }
  }
}

Unterstützte Produkte

Erfordert eines der folgenden Produkte oder höher.
Marketing HubMarketing Hub -Kostenlos
Sales HubSales Hub -Kostenlos
Service HubService Hub -Kostenlos
Content HubContent Hub -Kostenlos

Autorisierungen

Authorization
string
header
erforderlich

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

Pfadparameter

externalAccountId
string
erforderlich

accountId, die diesem Marketingevent in der externen Event-App zugeordnet ist.

externalEventId
string
erforderlich

Die ID des Marketingevents in der externen Event-App.

Abfrageparameter

after
string

Der Cursor, der die Position des zuletzt abgerufenen Elements anzeigt.

contactIdentifier
string

Die ID des Kontakts. Kann eine E-Mail oder eine interne ID sein.

limit
integer<int32>
Standard:10

Das Limit für die Antwortgröße. Der Standardwert ist 10, die maximale Anzahl ist 100.

state
string

Der Wert des Teilnehmerstatus. Zulässig: „REGISTERED“, „CANCELLED“, „ATTENDED“, „NO_SHOW“

Antwort

successful operation

results
object[]
erforderlich
total
integer<int32>
erforderlich

Gesamtmenge der Elemente

paging
object
Last modified on January 26, 2026