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"
}
]
}Get email subscriptions for the current user.
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"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful response with email subscriptions
Whether the subscription is currently active
true
Show child attributes