Delete emails from the forum access list.
https://yourproject.userecho.com/api/v2/forums/[forum_id]/access_list.json
Parameter | Value | Required? | Default | Options | Description |
---|---|---|---|---|---|
emails | List of Strings | yes | List of emails. |
{
"emails": [
"test@gmail.com",
"@mycompany.com"
]
}
{
"status": "success",
"data": [
{
"deleted": true,
"email": "test@gmail.com",
"exists": true
},
{
"deleted": false,
"email": "@mycompany.com",
"exists": false
}
]
}