Delete email account's autoresponder

This function deletes an autoresponder.

Important:

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

SecurityBasicAuth
Request
query Parameters
email
required
string <email>

The email account.

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