Skip to main content
GET
/
marketing
/
v3
/
marketing-events
/
participations
/
{marketingEventId}
/
breakdown
Leer el desglose de participaciones por el identificador interno del Evento de Marketing
curl --request GET \
  --url https://api.hubapi.com/marketing/v3/marketing-events/participations/{marketingEventId}/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
      }
    }
  ]
}

Productos compatibles

Se requiere uno de los siguientes productos o productos de ediciones superiores.
Marketing HubMarketing Hub -Gratuito
Sales HubSales Hub -Gratuito
Service HubService Hub -Gratuito
Content HubContent Hub -Starter
Esta API requiere uno de los siguientes ámbitos:
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

marketingEventId
integer
required

El id interno del evento de marketing en HubSpot.

Query Parameters

contactIdentifier
string

El identificador del contacto. Puede ser un correo o un id interno.

state
string

El valor del estado de participación. Puede ser REGISTERED, CANCELLED, ATTENDED, NO_SHOW

limit
integer
default:10

El límite para el tamaño de la respuesta. El valor predeterminado es 10; el número máximo es 100.

after
string

El cursor que indica la posición del último elemento recuperado.

Response

successful operation

total
integer
required
results
object[]
required
paging
object
I