Zum Hauptinhalt springen
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>'
{
  "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
      }
    }
  ]
}

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 -Starter
Esta API requer um dos seguintes escopos:
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

contactIdentifier
string
required

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

Query Parameters

state
string

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

limit
integer
default:10

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

after
string

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

Response

successful operation

total
integer
required
results
object[]
required
paging
object
I