Skip to main content
GET
/
accounts
/
users
/
notifications
List user notifications
curl --request GET \
  --url https://api.quiva.ai/accounts/users/notifications \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "title": "<string>",
    "description": "<string>",
    "created_at": "<string>",
    "viewed": true,
    "refs": [
      {
        "label": "<string>",
        "ref_id": "<string>",
        "type": "<string>",
        "url": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Response

Notifications retrieved successfully

data
object
required