コンテンツにスキップ

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

DELETE
/v0/lists/:id/members
curl --request DELETE \
--url http://localhost:3000/v0/lists/:id/members \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "account_id": "example" }'
id
required
string
Media type application/json
object
account_id
required
string
Example generated
{
"account_id": "example"
}

OK

You do not have permission to remove member to this list

Media type application/json
object
error
required
Any of:

No permission to access this object

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

List not found

Media type application/json
object
error
required
Any of:

List not found

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