Unset contact email addresses

Use this function to unset all contact email address for an account.

To set contact email address(es), call set_email_addresses.

SecurityBasicAuth
Request
query Parameters
old_address
required
Array of strings <email>

The account’s existing contact email addresses.

If this list does not match the account’s current current email address(es), then the request will fail. This control is here to prevent race conditions.

Example: old_address=old1@example.com
password
required
string

The account’s password.

Example: password=q1df%D9<z0ShqdxRP%^
Responses
200

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/ContactInformation/unset_email_addresses
Request samples
uapi --output=jsonpretty \
  --user=username \
  ContactInformation \
  unset_email_addresses \
  old_address='old1@example.com' \
  password='q1df%D9<z0ShqdxRP%^'
Response samples
application/json
{
  • "apiversion": 3,
  • "func": "create",
  • "module": "DynamicDNS",
  • "result": {
    • "errors": null,
    • "messages": null,
    • "metadata": {
      • "transformed": 1
      },
    • "status": 1,
    • "warnings": null
    }
}