GET
/
notifications
curl --request GET \
  --url https://api.courier.com/notifications \
  --header 'Authorization: Bearer <token>'
{
  "paging": {
    "cursor": "<string>",
    "more": true
  },
  "results": [
    {
      "created_at": 123,
      "updated_at": 123,
      "id": "<string>",
      "routing": {
        "method": "all",
        "channels": [
          "<string>"
        ]
      },
      "tags": {
        "data": [
          {
            "id": "<string>",
            "name": "<string>"
          }
        ]
      },
      "title": "<string>",
      "topic_id": "<string>",
      "note": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

cursor
string | null
notes
boolean | null

Retrieve the notes from the Notification template settings.

Response

200 - application/json
paging
object
required
results
object[]
required