Remove account mailing list admin privileges

This function removes an account's mailing list administrative privileges.

SecurityBasicAuth
Request
query Parameters
delegates
required
string

list of the administrators to remove.

Example: delegates=user@example.com,admin@example.com
list
required
string

The mailing list.

Example: list=mylist
Responses
200

HTTP Request was successful.

Response Schema: application/json
apiversion
integer

The version of the API.

func
string

The name of the method called.

module
string

The name of the module called.

object
get/Email/remove_mailman_delegates
Request samples
uapi --output=jsonpretty \
  --user=username \
  Email \
  remove_mailman_delegates \
  list='mylist' \
  delegates='user@example.com,admin@example.com'
Response samples
application/json
{
  • "apiversion": 3,
  • "func": "remove_mailman_delegates",
  • "module": "Email",
  • "result": {
    • "data": {
      • "delegates": [
        • "secondadmin@example.com"
        ],
      • "metadata": {
        • "transformed": null
        }
      },
    • "errors": null,
    • "messages": null,
    • "metadata": { },
    • "status": 1,
    • "warnings": null
    }
}