DomainAdmin cascade transfer

Transfer implicit ownership and quota of all administered domains, domain aliases, relay domains, and their associated properties such as MailUsers (mailboxes), aliases, and sender addresses to a DomainAdmin account.

  • HTTP Method: POST
  • URL: https://example.domain.tld/api/v1/accounts/cascade/ownership/domainadmin/<username>/
  • Require authentication: Yes
  • Permission level required: MasterAdmin

Path parameters

Parameter Type Description Required
username str DomainAdmin account username Required

Response

HTTP 204 NO CONTENT (empty string)

Example request (Python)

import requests
import json
from pprint import pprint

url = "https://example.domain.tld/api/v1/accounts/cascade/ownership/domainadmin/da1/"
r = requests.post(url, auth=("admin","long-auth_token-here"))
try:
    pprint(r.json())
except:
    print(r.text)
print(r.status_code)

Example response (text)


204