GET
/
lists
/
{list_id}
curl --request GET \
  --url https://api.courier.com/lists/{list_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "created": 123,
  "updated": 123
}

Authorizations

Authorization
string
header
required

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

Path Parameters

list_id
string
required

A unique identifier representing the list you wish to retrieve.

Response

200
application/json
id
string
required
name
string
required
created
integer | null
updated
integer | null