Skip to main content
GET
/
events
Retrieve a list of custom events
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"
      }
    }
  ]
}

Headers

Authorization
string
default:bearer YOUR_API_KEY
required
x-api-version
string
default:2025-09
required

The version of the API to use. The current API version is 2025-09.

Response

200

data
object[]
I