GET
/
reports
/
v2
/
events
/
{id}
Get Event by ID
curl --request GET \
  --url https://api.hubapi.com/reports/v2/events/{id} \
  --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.

Path Parameters

id
string
required

The ID of the specific event you're looking to pull.

Query Parameters

includeDeletes
boolean
default:false

If specified as true, will return a deleted event.

Response

200
application/json

Event retrieved successfully

The response is of type object.