Return mailing list administrators

This function lists a mailing list's administrators.

Important:

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

SecurityBasicAuth
Request
query Parameters
list
required
string

The name of a Mailman mailing list on the cPanel account.

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