Passer au contenu principal
GET
/
marketing
/
v3
/
marketing-events
/
participations
/
{marketingEventId}
/
breakdown
Lire la répartition des participations par identifiant interne d'événement marketing
curl --request GET \
  --url https://api.hubapi.com/marketing/v3/marketing-events/participations/{marketingEventId}/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>"
    }
  }
}

Produits pris en charge

Exige l'un des produits suivants ou un produit supérieur.
Marketing HubMarketing Hub -Gratuit
Sales HubSales Hub -Gratuit
Service HubService Hub -Gratuit
Content HubContent Hub -Gratuit

Autorisations

Authorization
string
header
requis

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

Paramètres de chemin

marketingEventId
integer<int64>
requis

L'identifiant interne de l'événement marketing dans HubSpot.

Paramètres de requête

after
string

Le curseur indiquant la position du dernier élément récupéré.

contactIdentifier
string

L'identifiant du contact. Cela peut être l'e-mail ou l'identifiant interne.

limit
integer<int32>
défaut:10

La limite de taille de la réponse. La valeur par défaut est 10, le nombre maximal est 100.

state
string

La valeur de l'état de participation  : INSCRIT, ANNULÉ, PARTICIPÉ, NO_SHOW

Réponse

successful operation

results
object[]
requis
total
integer<int32>
requis

Nombre total d'éléments

paging
object
Last modified on December 9, 2025