curl -X GET \
/notifications/{id} \
--header "Authorization: Bearer <token>"
{
"id": "<string>",
"type": {
"name": "<string>",
"description": "<string>"
},
"channel": "email",
"payload": [
"<string>"
],
"recipients": [
"<string>"
],
"status": "sent",
"createdAt": "2023-11-07T05:31:56Z",
"deliverAt": "2023-11-07T05:31:56Z",
"sentAt": "2023-11-07T05:31:56Z"
}
Get a notification by id
curl -X GET \
/notifications/{id} \
--header "Authorization: Bearer <token>"
{
"id": "<string>",
"type": {
"name": "<string>",
"description": "<string>"
},
"channel": "email",
"payload": [
"<string>"
],
"recipients": [
"<string>"
],
"status": "sent",
"createdAt": "2023-11-07T05:31:56Z",
"deliverAt": "2023-11-07T05:31:56Z",
"sentAt": "2023-11-07T05:31:56Z"
}
Value for the Authorization header parameter.
SentNotification identifier
SentNotification resource
Was this page helpful?