Return email account's mailing list privileges

This function checks an account's administrative privileges on mailing lists.

Important:

When you disable the Receive Mail role, the system disables this function.

SecurityBasicAuth
Request
query Parameters
delegate
required
string <email>

The email address.

Example: delegate=user@example.com
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/has_delegated_mailman_lists
Request samples
uapi --output=jsonpretty \
  --user=username \
  Email \
  has_delegated_mailman_lists \
  delegate='user@example.com'
Response samples
application/json
{
  • "apiversion": 3,
  • "func": "has_delegated_mailman_lists",
  • "module": "Email",
  • "result": {
    • "data": 1,
    • "errors": null,
    • "messages": null,
    • "metadata": {
      • "transformed": 1
      },
    • "status": 1,
    • "warnings": null
    }
}