GET
/
profiles
/
{user_id}
/
lists
curl --request GET \
  --url https://api.courier.com/profiles/{user_id}/lists \
  --header 'Authorization: Bearer <token>'
{
  "paging": {
    "cursor": "<string>",
    "more": true
  },
  "results": [
    {
      "id": "<string>",
      "name": "<string>",
      "created": "<string>",
      "updated": "<string>",
      "preferences": {
        "categories": {},
        "notifications": {}
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

user_id
string
required

A unique identifier representing the user associated with the requested profile.

Query Parameters

cursor
string | null

A unique identifier that allows for fetching the next set of message statuses.

Response

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

An array of lists