Chimely
Api

Browse direct notifications (filter by subscriber, category, time)

GET
/admin/api/environments/{env_id}/notifications

Authorization

AdminSession
chimely_admin<token>

Server-side admin session cookie, set by POST /admin/api/login.

In: cookie

Path Parameters

env_id*string

Environment TypeID (env_…).

subscriber_id*|

Customer-provided subscriber id.

category*string|null
after*|

Lower bound on visible_at (inclusive), RFC 3339.

before*|

Upper bound on visible_at (exclusive), RFC 3339.

limit*|
cursor*|

Opaque keyset cursor from the previous page's next_cursor.

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/admin/api/environments/string/notifications"
{
  "items": [
    {
      "category": "string",
      "created_at": "string",
      "deliver_at": "string",
      "id": "string",
      "payload": null,
      "read_at": "string",
      "subscriber_id": "string",
      "visible_at": "string"
    }
  ],
  "next_cursor": "string"
}
{
  "error": {
    "code": "invalid_request",
    "message": "string"
  }
}
Empty
{
  "error": {
    "code": "invalid_request",
    "message": "string"
  }
}
{
  "error": {
    "code": "invalid_request",
    "message": "string"
  }
}