With a Single inquire you request the data of individual objects. With the keyword "key" additional details can be requested in some cases. Which these are in detail, is listed with the respective objects.

Structure

KeyOccursTypeFormatDescription

code

1

task


E.g. Domain Inquire 0105

object type

1



Depending on the data object requested, an appropriate keyword is required, e.g. "domain", "contact" or "zone".

object type / identifier

1

string


For example, the unique name of the object, e.g. the name of a domain of the "domain" type.

key

0 - n



Enables the query of additional fields. The possible values depend on the type of object.

Example (domain inquire)

XML
 <request>
       <auth>
             <user>customer</user>
             <password>password</password>
             <context>4</context>
       </auth>
       <task>
             <code>0105</code>
             <view>
                    <offset>0</offset>
                    <limit>30</limit>
                    <children>1</children>
             </view>
             <where>
                    <and>
                           <key>name</key>
                           <operator>eq</operator>
                           <value>test*</value>
                    </and>
                    <and>
                           <or>
                                  <key>name</key>
                                  <operator>eq</operator>
                                  <value>*.de</value>
                           </or>
                           <or>
                                  <key>name</key>
                                  <operator>eq</operator>
                                  <value>*.com</value>
                           </or>
                    </and>
             </where>
       </task>
 </request>

Route: GET /domain​/{name}