Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Retrieve the notes from the Notification template settings.
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>"
}
]
}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>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Retrieve the notes from the Notification template settings.