GET
/
notifications
/
{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"
}

Authorizations

Authorization
string
header
required

Value for the Authorization header parameter.

Path Parameters

id
string
required

SentNotification identifier

Response

200
application/json
SentNotification resource
id
string
type
object
channel
enum<string>
Available options:
email,
sms,
slack,
letter
payload
string[]
recipients
string[]
status
enum<string>
Available options:
sent,
failed,
pending
createdAt
string
deliverAt
string | null
sentAt
string | null