Pular para o conteúdo principal
GET
/
marketing
/
v3
/
marketing-events
/
participations
/
contacts
/
{contactIdentifier}
/
breakdown
Ler detalhamento das participações por identificador de contato
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": {
        "attendanceState": "ATTENDED",
        "occurredAt": 123,
        "attendanceDurationSeconds": 123,
        "attendancePercentage": "<string>"
      }
    }
  ],
  "total": 123,
  "paging": {}
}

Produtos suportados

Requer um dos seguintes produtos ou superior.
Marketing HubMarketing Hub -Grátis
Sales HubSales Hub -Grátis
Service HubService Hub -Grátis
Content HubContent Hub -Grátis

Autorizações

Authorization
string
header
obrigatório

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

Parâmetros de caminho

contactIdentifier
string
obrigatório

O identificador do contato. Pode ser o e-mail ou ID interno.

Parâmetros de consulta

after
string

O cursor que indica a posição do último item recuperado.

limit
integer<int32>
padrão:10

O limite para o tamanho da resposta. O valor padrão é 10; o número máximo é 100.

state
string

O valor do estado da participação. Pode ser REGISTERED, CANCELLED, ATTENDED, NO_SHOW

Resposta

successful operation

results
object[]
obrigatório
total
integer<int32>
obrigatório
paging
object
Last modified on March 24, 2026