+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 Information

Sie sind hier:

Retrieve a list of placeholders of the connected account. Valid „Accept“ header values are application/xml or application/json. By default XML is returned.
This resource returns only the DEFAULT mailing domain. If the account is configured to use several mailing domains, see https://support.maileon.com/support/get-account-mailing-domains/ to retrieve all.
Type can be production or demo.

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

Response

HTTP status code Description
200 OK If everything was ok.

Example XML

200 OK

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

200

<account_info>
  <id>12345</id>
  <customer_account_id>123</customer_account_id>
  <created>2020-07-06T09:41:00+0200</created>
  <customer_account_name>Test Customer</customer_account_name>
  <locale>de_DE</locale>
  <mailing_domain>test.maileon.de</mailing_domain>
  <name>Test NL Account</name>
  <login_domain>test-maileon.maileon.com</login_domain>
  <type>production</type>
</account_info>

Example JSON

200 OK

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

200

{
  "mailing_domain": "test.maileon.de",
  "id": 12345,
  "customer_account_id": 234,
  "created": "2020-07-06T09:41:00+0200",
  "customer_account_name": "Test Customer",
  "name": "Test NL Account",
  "login_domain": "test-maileon.maileon.com",
  "locale": "de_DE",
  "type": "production"
}
Inhaltsverzeichnis