Return domain's autoresponders

This function lists a domain's autoresponders.

Important:

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

SecurityBasicAuth
Request
query Parameters
domain
required
string <domain>

The domain name.

Example: domain=example.com
regex
string

A Perl Compatible Regular Expression (PCRE) that filters the results.

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