Headers
The version of the API to use. The current API version is 2025-09.
Response
200
curl --request GET \
--url https://production.runalloy.com/events \
--header 'Authorization: <authorization>' \
--header 'x-api-version: <x-api-version>'
{
"data": [
{
"name": "Customer Created",
"description": "This event is invoked every time a customer is created in your app",
"body": {
"name": "Gregg",
"email": "support@runalloy.com"
}
},
{
"name": "Order created",
"description": "Triggers when an order is created in ACME",
"body": {
"orderId": "0001",
"orderName": "My order",
"customerEmail": "support@runalloy.com",
"customerPhone": "1234567891"
}
},
{
"name": "Invoke Slack",
"description": "Invokes Slack",
"body": {
"name": "New order created"
}
}
]
}
Returns a list of all Custom Events you have enabled in Alloy Embedded.
curl --request GET \
--url https://production.runalloy.com/events \
--header 'Authorization: <authorization>' \
--header 'x-api-version: <x-api-version>'
{
"data": [
{
"name": "Customer Created",
"description": "This event is invoked every time a customer is created in your app",
"body": {
"name": "Gregg",
"email": "support@runalloy.com"
}
},
{
"name": "Order created",
"description": "Triggers when an order is created in ACME",
"body": {
"orderId": "0001",
"orderName": "My order",
"customerEmail": "support@runalloy.com",
"customerPhone": "1234567891"
}
},
{
"name": "Invoke Slack",
"description": "Invokes Slack",
"body": {
"name": "New order created"
}
}
]
}
The version of the API to use. The current API version is 2025-09.
200
Show child attributes