DocsHTTP APIList notifications

List notifications

List notifications. Use GET /notifications in Chronoverse, with authentication, parameters, and response details.

GET
/notifications

Authentication

cookieSession
apiKey
required

Encrypted session cookie issued after registration or login.

cookie: session

Parameters

cursor
query

Opaque pagination cursor

string

Responses

200

Paginated notifications

application/json
{
  "type": "object",
  "properties": {
    "notifications": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "format": "uuid"
          },
          "kind": {
            "type": "string"
          },
          "payload": {
            "type": "string",
            "description": "Notification-kind-specific JSON encoded as a string"
          },
          "read_at": {
            "type": "string",
            "format": "date-time"
          },
          "created_at": {
            "type": "string",
            "format": "date-time"
          },
          "updated_at": {
            "type": "string",
            "format": "date-time"
          }
        }
      }
    },
    "cursor": {
      "type": "string"
    }
  }
}
401

Missing or invalid session

429

Ingress rate or connection limit exceeded for the client address