Delete relay domain¶
Delete relay domain (verified or pending verification)
- HTTP Method:
DELETE
- URL:
https://example.domain.tld/api/v1/relaydomains/
- Require authentication:
Yes
- Permission level required:
MasterAdmin
/DomainAdmin
Request parameters¶
Parameter | Type | Description | Required |
---|---|---|---|
relay_domain | str | Relay domain name | 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/relaydomains/"
data = {
"relay_domain" : "test.vonmail.com"
}
r = requests.delete(url, json=data, auth=("admin","long-auth_token-here"))
try:
pprint(r.json())
except:
print(r.text)
print(r.status_code)
Example response (text)¶
204