Zum Hauptinhalt springen
GET
/
marketing
/
v3
/
marketing-events
/
participations
/
{externalAccountId}
/
{externalEventId}
/
breakdown
Ler detalhamento das participações pelo identificador externo do evento de marketing
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
      }
    }
  ]
}

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

externalAccountId
string
required

O accountId que está associado a este evento de marketing no aplicativo de eventos externos.

externalEventId
string
required

O ID do evento de marketing no aplicativo de eventos externos.

Query Parameters

contactIdentifier
string

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

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