Zum Hauptinhalt springen
GET
/
notifications
/
{id}
cURL
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"
}

Documentation Index

Fetch the complete documentation index at: https://docs.fynn.eu/llms.txt

Use this file to discover all available pages before exploring further.

Autorisierungen

Authorization
string
header
erforderlich

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Pfadparameter

id
string
erforderlich

SentNotification identifier

Antwort

SentNotification resource

id
string
read-only
type
object
channel
enum<string>
Verfügbare Optionen:
email,
sms,
slack,
letter
payload
string[]
recipients
string[]
status
enum<string>
Verfügbare Optionen:
sent,
failed,
pending
createdAt
string<date-time>
deliverAt
string<date-time> | null
sentAt
string<date-time> | null