Table of Contents

Function

The DomainInfo task creates a list of specific details of domains that are registered and in the user's inventory and access.

You can find more information about list queries here.

Description

Route:​ POST /domain​/_search

Query parameters

The data of the following keywords can be queried with the query parameter ?keys[]=:

  • abuseEmail
  • adminc
  • authinfo (only if authinfo is set)
  • autoDnssec
  • autoRenewStatus
  • certificate
  • cancelation
  • comment
  • domainCreated
  • domainsafe
  • dnssec
  • expire
  • generalRequestEmail
  • nameServerGroup
  • nameServers
  • nameServerEntries
  • ownerc
  • parking (only if parking is set)
  • cancelationStatus (only if cancelationStatus is set)
  • payable
  • priceClass (only for Premium Domains with priceclasses)
  • priceClassRenew
  • period
  • rddsOptIn
  • registrarStatus
  • registryStatus  (only if supported by the registry)
  • techc
  • updater
  • validCertificate
  • privacy
  • privacyPlusMail
  • privacyPlus
  • trustee
  • zonec
Request
{
   "filters": [
      {
         "key": "name",
         "value": "example*",
         "operator": "LIKE",
         "link": "AND",
         "filters": []
      }
   ],
   "view": {
      "limit": 2,
      "offset": 0,
      "children": true,
      "from": "2019-04-01T14:31:33.6306444Z",
      "to": "2019-05-10T15:31:03.6306444Z"
   },
   "type": "DESC"
}
RESPONSE
{
    "stid": "20190628-app3-dev-11832",
    "status": {
        "code": "S0105",
        "text": "Domain data has been inquired successfully.",
        "type": "SUCCESS"
    },
    "object": {
        "type": "Domain",
        "summary": 2
    },
    "data": [
        {
            "created": "2019-06-28T15:12:51.000+0200",
            "updated": "2019-06-28T15:13:09.000+0200",
            "owner": {
                "context": 4,
                "user": "customer"
            },
            "name": "example.com"
        },
        {
            "created": "2019-05-10T14:50:07.000+0200",
            "updated": "2019-05-28T10:22:35.000+0200",
            "owner": {
                "context": 4,
                "user": "customer"
            },
            "name": "example1.com"
        },
               
    ]
}

Task code: 0105
Uses Domain object

Keywords

The data of the following keywords can be inquired with the keyword <key>:

  • abuse_email

  • adminc

  • authinfo (only if authinfo is set)

  • autorenew

  • cancelation

  • certificate

  • comment

  • dnssec

  • domainsafe

  • domain_created

  • expire

  • general_request_email

  • ns_group

  • nsentry

  • nserver

  • ownerc

  • parking (only if parking is set)

  • payable

  • priceClass (only for Premium Domains with price classes)

  • price_class_renew

  • period

  • privacy_plus_email

  • rdds_opt_in

  • registrar_status

  • registryStatus  (only if supported by the registry)

  • techc

  • updater

  • use_auto_dnssec

  • use_privacy

  • use_privacy_plus

  • Use_trustee

  • zonec

Request
<request>
	<auth>
		<user>customer</user>
		<password>password</password>
		<context>4</context>
	</auth>
	<task>
		<code>0105</code>
	</task>
</request>
Response
<response>
	<result>
		<data>
			<summary>2</summary>
			<domain>
				<name>example.com</name>
				<extension/>
				<owner>
					<user>customer</user>
					<context>4</context>
				</owner>
				<created>2014-06-18 14:18:59</created>
				<updated>2017-11-17 17:34:41</updated>
			</domain>
			<domain>
				<name>example1.com</name>
				<registry_status>NONE</registry_status>
				<extension/>
				<owner>
					<user>customer</user>
					<context>4</context>
				</owner>
				<created>2014-10-29 13:58:56</created>
				<updated>2017-11-17 17:34:41</updated>
			</domain>
		</data>
	</result>
</response>