/v0/lists/:id/members (GET)
GET
/v0/lists/:id/members
const url = 'http://localhost:3000/v0/lists/:id/members';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:3000/v0/lists/:id/membersResponses
Section titled “ Responses ”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
Example
{ "error": "LIST_NOT_FOUND"}Internal error
Media type application/json
Internal server error
object
error
required
Internal server error
string
Example
{ "error": "INTERNAL_ERROR"}