コンテンツにスキップ

/v0/lists/:id (GET)

GET
/v0/lists/:id
curl --request GET \
--url http://localhost:3000/v0/lists/:id \
--header 'Authorization: Bearer <token>'
id
required
string

OK

Media type application/json
object
id
required

List ID

string
title
required

List title

string
public

If true, list is public

boolean
Example
{
"id": "38477395",
"title": "Pulsate developers",
"public": false
}

List not found

Media type application/json

List not found

object
error
required

List not found

string
Allowed values: LIST_NOT_FOUND
Example
{
"error": "LIST_NOT_FOUND"
}

Internal error

Media type application/json

Internal server error

object
error
required

Internal server error

string
Allowed values: INTERNAL_ERROR
Example
{
"error": "INTERNAL_ERROR"
}