Skip to main content

Documentation Index

Fetch the complete documentation index at: https://api.docs.onlydrams.app/llms.txt

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

Returns a paginated list of user notifications.

Parameters

No parameters.

Returns

Returns a paginated object of notifications.
  curl -H "Authorization: $ACCESS_TOKEN" \
    --request GET \
    --url https://api.onlydrams.app/api/v1/users/:id/notifications
{
	"total": 1,
	"has_more": false,
	"data": [
		{
			"notification_type": "announcement",
			"metadata": {
				"test": "test"
			},
			"read": false
		}
	]
}