GET
/
reports
/
v2
/
events
/
batch
Get a Group of Events by ID
curl --request GET \
  --url https://api.hubapi.com/reports/v2/events/batch \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "label": "<string>",
    "status": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

id
string[]
required

The ID of an event. Can be included multiple times to pull multiple events.

includeDeletes
boolean
default:false

If specified as true, will include deleted events.

Response

200
application/json

Events retrieved successfully

The response is of type object[].