Zum Hauptinhalt springen
GET
/
marketing
/
v3
/
marketing-events
/
participations
/
contacts
/
{contactIdentifier}
/
breakdown
Aufschlüsselung der Teilnahmen anhand der Kontakt-ID lesen
curl --request GET \
  --url https://api.hubapi.com/marketing/v3/marketing-events/participations/contacts/{contactIdentifier}/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": {
        "occurredAt": 123,
        "attendanceDurationSeconds": 123,
        "attendancePercentage": "<string>"
      }
    }
  ],
  "total": 123,
  "paging": {
    "next": {
      "after": "<string>",
      "link": "<string>"
    },
    "prev": {
      "before": "<string>",
      "link": "<string>"
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.hubspot.de/docs/llms.txt

Use this file to discover all available pages before exploring further.

Supported products

Autorisierungen

Authorization
string
header
erforderlich

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

Pfadparameter

contactIdentifier
string
erforderlich

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

Abfrageparameter

after
string

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

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
paging
object
Last modified on April 13, 2026