Skip to main content

Get the subscriptions for a list

Get the list's subscriptions.

URL: https://api.courier.com/lists/:list_id/subscriptions

Method: GET

Path Parameters

list_idstringrequired
A unique identifier associated with the list you wish to retrieve.

Query Parameters

cursorstring
A unique identifier that allows for fetching the next set of list subscriptions

Responses

status: 200 OK

pagingobject
+ Show Properties
itemsarray
An array of list subscriptions
+ Show Properties

status: 404 Not Found

messagestring
A message describing the error that occurred.
typestring
[invalid_request_error] The type of error that occurred.

Request Example

curl --request GET \
--url https://api.courier.com/lists/example.list.id/subscriptions?cursor=MTU4OTQ5NTI1ODY4NywxLTVlYmRjNWRhLTEwODZlYWFjMWRmMjEwMTNjM2I0ZjVhMA \
--header 'Accept: application/json'

Responses Example

{
"paging": {
"cursor": "MTU4OTQ5NTI1ODY4NywxLTVlYmRjNWRhLTEwODZlYWFjMWRmMjEwMTNjM2I0ZjVhMA==",
"more": true
},
"items": [
{
"recipientId": "0460766e-8463-4905-ae98-b72c7aef41d6",
"created": "2020-06-10T18:41:29.093Z",
"preferences": {
"notifications": {
"{KEY}": {
"channel_preferences": [
{
"channel": "push"
}
],
"rules": [
{
"type": "snooze",
"start": "2021-08-23T23:27:41+00:00",
"until": "2022-09-16T23:27:41+00:00"
}
],
"status": "OPTED_IN"
}
},
"categories": {
"{KEY}": {
"channel_preferences": [
{
"channel": "push"
}
],
"rules": [
{
"type": "snooze",
"start": "2021-08-23T23:27:41+00:00",
"until": "2022-09-16T23:27:41+00:00"
}
],
"status": "OPTED_IN"
}
}
}
}
]
}
{
"message": "Not Found",
"type": "invalid_request_error"
}

Example

Method: GET

URL: https://api.courier.com/lists/abcdefgh12345678/subscriptions

Was this helpful?