Table of contents

General contact extensions

KeyOccursTypeFormatDescription
contact/type0 - 1enumContactTypeEnumDescribes the type of a contact. Possible values are: 
  • ORGANIZATION
  • PERSON
Default value is PERSON.
contact/strict0 - 1boolean
Ensures that the data for transfer to the registry is not modified.0 = active1 = not activeDefault = 0
contact/gender0 - 1 *)enumGenderEnumDescribes the gender of a contact. Possible values are: 
  • MALE
  • FEMALE
contact/language0 - 1language
Language of the contact (RFC 3066), for example "de" or "de_ch"
contact/sip0 - 1uri
SIP address, for example. sip:john.sample@example.com
contact/verification0 - 1enum
Current verification status of the contact. Possible values are:
  • PENDING
  • SUCCESS
  • FAILED
  • NOT_SET
contact/domainsafe0 - 1boolean
Displays if the contact is protected by the DomainSafe.
contact/companynumber0 - 1 *)string
Company register number / Company number
contact/vatnumber0 - 1 *)string
VAT Nummer
contact/citizenship0 - 1string
Citizenship. For eu citizens not living in a european country.
contact/mobile0 - 1e164Type
Mobile telephone number
identity / number0 - 1 *)string
Identification card number
identity / authority0 - 1 *)string
Issuing authority
identity / dateOfIssue0 - 1 *)date
Issuing date if the identification card.
identity / validTill0 - 1 *)date
Date until the identification card is valid.
trademark / name0 - 1 *)string
Trademark name
trademark / number0 - 1 *)string
Trademark number
trademark / office0 - 1 *)string
Authority where the trademark was applied for.
trademark / country0 - 1 *)country
Country in which the trademark is valid. ( ISO 3166 Country Code ).
trademark / regdate0 - 1 *)date
Date on which the trademark was registered.
trademark / appdate0 - 1 *)date
Date on which the trademark was applied for.
birth / country0 - 1country
Country of birth ( ISO 3166 Country Code )
birth / day0 - 1 *)date
Date of birth
birth / pcode0 - 1 *)string
Zip code
birth / place0 - 1 *)string
Place of birth
disableDuplicateSearch0 - 1boolean
Toggles the duplicate contact search function on/off when using the ContactCreate command. This is activated by default.

XML example

General contact extensions

<extension>
	<domainrobot:contact xmlns:domainrobot="urn:org:domainrobot:ns:ext-1.0">
   		<domainrobot:type>PERSON</domainrobot:type>
 		<domainrobot:strict>1</domainrobot:strict>
        <domainrobot:companynumber>123456789</domainrobot:companynumber>
		<domainrobot:vatnumber>123456789</domainrobot:vatnumber>
	 	<domainrobot:gender>FEMALE</domainrobot:gender>
		<domainrobot:mobile x=''>+49.123123</domainrobot:mobile>
		<domainrobot:disableDuplicateSearch>1</domainrobot:disableDuplicateSearch>
		<domainrobot:trademark>
        	<domainrobot:name>Test Trademark</domainrobot:name>
        	<domainrobot:number>123456789</domainrobot:number>
        	<domainrobot:office>DPMA</domainrobot:office>
        	<domainrobot:country>DE</domainrobot:country>
        	<domainrobot:regdate>2017-01-01</domainrobot:regdate>
        	<domainrobot:appdate>2017-01-02</domainrobot:appdate>
        </domainrobot:trademark>
        <domainrobot:identity>
        	<domainrobot:number>123456789</domainrobot:number>
            <domainrobot:authority>ID Authority Fake City</domainrobot:authority>
            <domainrobot:dateOfIssue>1983-01-30</domainrobot:dateOfIssue>
            <domainrobot:validTill>1983-01-30</domainrobot:validTill>
        </domainrobot:identity>
        <domainrobot:birth>
        	<domainrobot:country>DE</domainrobot:country>
            <domainrobot:day>1983-01-30</domainrobot:day>
            <domainrobot:pcode>12345</domainrobot:pcode>
            <domainrobot:place>Fake City</domainrobot:place>
    	</domainrobot:birth>
	</domainrobot:contact>
</extension>