GET
/
api
/
v1
/
notifications
/
events
curl --request GET \
  --url https://api.byblend.com/api/v1/notifications/events \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "Order Created",
    "description": "Triggered when an order is created",
    "event_code": "order.created"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successful response with list of notification events

The response is of type object[].