List feed notifications
list_feed_notificationsRead one end user's in-app notification feed (GET /notifications): the entries created by sends with feed or showInFeed. This is what an in-app inbox would show, not delivery status (use get_send_status for that). Paginate by passing nextCursor back as cursor.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| after | No | Only entries created after this ISO 8601 UTC datetime (e.g. "2026-09-01T00:00:00Z"). | |
| limit | No | Entries per page (default 50, max 200). | |
| before | No | Only entries created before this ISO 8601 UTC datetime. | |
| cursor | No | `nextCursor` from the previous page. | |
| templateId | No | Only entries from this template. | |
| externalUserId | Yes | The end user whose feed to read (the `externalUserId` used when sending). | |
| channelConfigId | No | Only entries whose first delivery used this channel. |