Export custom events list
get
/events/list
Use this endpoint to export a list of custom events that have been recorded for your app. The event names are returned in groups of 250, sorted alphabetically.
Prerequisites
To use this endpoint, you’ll need an API key with the events.list
permission.
Rate limit
For customers who onboarded with Braze on or after September 16, 2021, we apply a shared rate limit of 1,000 requests per hour to this endpoint. This rate limit is shared with the /custom_attributes
, /events
, and /purchases/product_list
endpoints, as documented in API rate limits.
Request parameters
Parameter | Required | Data Type | Description |
---|---|---|---|
page |
Optional | Integer | The page of event names to return, defaults to 0 (returns the first set of up to 250). |
Example request
1
2
curl --location --request GET 'https://rest.iad-01.braze.com/events/list?page=3' \
--header 'Authorization: Bearer YOUR-REST-API-KEY'
Response
1
2
3
4
5
6
7
8
9
10
11
Content-Type: application/json
Authorization: Bearer YOUR-REST-API-KEY
{
"message": (required, string) the status of the export, returns 'success' when completed without errors,
"events" : [
"Event A", (string) the event name,
"Event B", (string) the event name,
"Event C", (string) the event name,
...
]
}
Fatal error response codes
For status codes and associated error messages that will be returned if your request encounters a fatal error, reference Fatal errors & responses.
tip:
For help with CSV and API exports, visit Export troubleshooting.
New Stuff!