コンテンツにスキップ

/v0/lists/:id/members (GET)

GET
/v0/lists/:id/members
curl --request GET \
--url http://localhost:3000/v0/lists/:id/members

OK

Media type application/json
object
assignees
required
Array<object>
object
id
required

Assignee account ID

string
name
required

Assignee account name

string
nickname
required

Assignee nickname

string
avatar
required

Avatar URL

string format: uri
Example
{
"assignees": [
{
"id": "30984308495",
"name": "@john@example.com",
"nickname": "John Doe",
"avatar": "https://example.com/avatar.png"
}
]
}

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"
}