Skip to main content
GET
/
api
/
v1
/
notifications
/
email
Get email subscriptions
curl --request GET \
  --url https://api.byblend.com/api/v1/notifications/email \
  --header 'Authorization: Bearer <token>'
{
  "is_active": true,
  "subscriptions": [
    {
      "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 email subscriptions

is_active
boolean

Whether the subscription is currently active

Example:

true

subscriptions
object[]
I