slackLists.access.delete
method
Usage info
Lists are only available to Slack workspaces on a paid plan.
This method is used to revoke access to a List for specified entities.
Both channel_ids
and user_ids
cannot be passed at the same time, but at least one of them is required.
Sample requests data
Remove channel access
{
"token": "***",
"list_id": "F1234567",
"channel_ids": ["C7654321"]
}
Remove user access
{
"token": "***",
"list_id": "F1234567",
"user_ids": ["U7654321"]
}