curl --request GET \
--url https://app.enzo.health/api/v1/subscribers/{subscriberId}/notifications/feed \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"templateId": "<string>",
"environmentId": "<string>",
"messageTemplateId": "<string>",
"organizationId": "<string>",
"notificationId": "<string>",
"subscriberId": "<string>",
"feedId": "<string>",
"jobId": "<string>",
"transactionId": "<string>",
"templateIdentifier": "<string>",
"providerId": "<string>",
"content": "<string>",
"subject": "<string>",
"channel": "<string>",
"seen": true,
"read": true,
"status": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"cta": {
"type": "<string>",
"data": {
"url": "<string>"
},
"action": {
"buttons": [
"<any>"
]
}
},
"payload": {},
"subscriber": {
"id": "<string>",
"subscriberId": "<string>",
"firstName": "<string>"
},
"actorSubscriber": "<any>"
}
],
"totalCount": 123,
"hasMore": true,
"pageSize": 123,
"page": 123
}
curl --request GET \
--url https://app.enzo.health/api/v1/subscribers/{subscriberId}/notifications/feed \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"templateId": "<string>",
"environmentId": "<string>",
"messageTemplateId": "<string>",
"organizationId": "<string>",
"notificationId": "<string>",
"subscriberId": "<string>",
"feedId": "<string>",
"jobId": "<string>",
"transactionId": "<string>",
"templateIdentifier": "<string>",
"providerId": "<string>",
"content": "<string>",
"subject": "<string>",
"channel": "<string>",
"seen": true,
"read": true,
"status": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"cta": {
"type": "<string>",
"data": {
"url": "<string>"
},
"action": {
"buttons": [
"<any>"
]
}
},
"payload": {},
"subscriber": {
"id": "<string>",
"subscriberId": "<string>",
"firstName": "<string>"
},
"actorSubscriber": "<any>"
}
],
"totalCount": 123,
"hasMore": true,
"pageSize": 123,
"page": 123
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Successful response
The response is of type object
.