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>'
{
  "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
      }
    }
  ]
}
Unterstützte Produkte
Erfordert eines der folgenden Produkte oder höher.
Marketing HubMarketing HubKostenlos
Sales HubSales HubKostenlos
Service HubService HubKostenlos
Content HubContent HubStarter

Erforderliche Bereiche

Diese API erfordert einen der folgenden Bereiche:
  • 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

externalAccountId
string
required

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

externalEventId
string
required

Die ID des Marketingevents in der externen Event-App.

Query Parameters

contactIdentifier
string

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

state
string

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

limit
integer
default:10

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

after
string

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

Response

200
application/json

successful operation

The response is of type object.