+49 69 83008980 service@xqueue.com
Benötigen Sie Hilfe?

Im Maileon Help-Center finden Sie umfassende Dokumentationen zu unserem System.

Beliebte Suchanfragen: Importe | Rest-API | Integrationen | SMS

Get Account Mailing Domains

Sie sind hier:

Retrieve the list of mailing domains of the account. Valid „Accept“ header values are application/xml or application/json. By default XML is returned.
Usually an account only uses a single mailing domain. this resource is useful for accounts that contain several mailing domains.

GET https://api.maileon.com/1.0/account/mailing_domains

Response

HTTP status code Description
200 OK If everything was ok.

Example XML

200 OK

GET https://api.maileon.com/1.0/account/mailing_domains
Accept: application/xml

200

<mailing_domains>
  <mailing_domain>
    <name>test.maileon.de</name>
    <status>active</status>
    <created>2020-07-06T09:41:40+0200</created>
    <http_reachable>true</http_reachable>
    <https_reachable>true</https_reachable>
    <certificate_expires>2024-03-25T13:46:09+0100</certificate_expires>
  </mailing_domain>
</mailing_domains>

Example JSON

200 OK

GET https://api.maileon.com/1.0/account/mailing_domains
Accept: application/json

200

[{
  "https_reachable": true,
  "created": "2020-07-06T09:41:40+0200",
  "name": "test.maileon.de",
  "http_reachable": true,
  "certificate_expires": "2024-03-25T13:46:09+0100",
  "status": "active"
}]
Inhaltsverzeichnis