Table of Contents

Function

The ContactVerificationInfo job type inquires the data of a domain contact verification.

Description

Route: GET /contact/{id}/verification
No body has to be send.

Request
{ 
}
Response
{
	"status": {
		"code": "S0344",
		"text": "The data of the domain contact verification request could be inquired successfully.",
		"type": "SUCCESS"
	},
	"object": {
		"type": "ContactVerification",
		"value": "11423479"
	},
	"data": [
		{
			"created": "2012-11-01T13:19:36.000+0100",
			"updated": "2013-11-21T10:47:55.000+0100",
			"owner": {
				"context": 4,
				"user": "customer"
			},
			"updater": {
				"context": 4,
				"user": "customer"
			},
			"messageSend": "2012-11-15T13:19:36.000+0100",
			"confirmIp": "1.2.3.4",
			"domains": [
				{
					"name": "example1.com",
					"status": "NOT_SET",
					"deactivation": "2012-11-30T13:19:36.000+0100"
				},
				{
					"name": "example2.com",
					"status": "SUCCESS",
					"deactivation": "2012-11-15T13:19:36.000+0100"
				}
			],
			"verificationMails": [
				{
					"created": "2012-11-01T13:19:36.000+0100",
					"mail": {
						"id": 121212
					},
					"status": "PENDING"
				}
			],
			"contact": {
				"created": "2009-08-05T13:28:33.000+0200",
				"updated": "2013-11-21T10:23:13.000+0100",
				"id": 11423479,
				"owner": {
					"context": 4,
					"user": "customer"
				},
				"updater": {
					"context": 4,
					"user": "customer"
				},
				"alias": "verification-pending",
				"type": "PERSON",
				"title": "",
				"city": "City",
				"country": "DE",
				"state": "Bayern",
				"email": "noreply@example.com",
				"protection": "SHOW_ALL",
				"fname": "John",
				"lname": "Doe",
				"address": [
					"Sample Str. 1"
				],
				"pcode": "12345",
				"phone": "+49-0-00",
				"fax": "+49-0-00"
			}
		}
	]
}

Task code: 0344
Uses Contact Verification object

Request
<request>
	<auth>
		<user>customer</user>
		<password>passowrd</password>
		<context>4</context>
	</auth>
	<task>
		<code>0344</code>
		<handle_verification>
			<reference>358309f0</reference>
		</handle_verification>
		<key>mail</key>
	</task>
</request>
Response
<response>
    <result><data>
            <handle_verification>
                <handle>
                    <alias>verification-pending</alias>
                    <type>PERSON</type>
                    <fname>Max</fname>
                    <lname>Mustermann</lname>
                    <title />
                    <address>examplestreet 1</address>
                    <pcode>23445</pcode>
                    <city>examplecity</city>
                    <country>US</country>
                    <state>mi</state>
                    <phone>+01-0-00</phone>
                    <fax>+01-0-00</fax>
                    <email>customer@example.com</email>
                    <protection>A</protection>
                    <extension />
                    <owner>
                        <user>customr</user>
                        <context>4</context>
                     </owner>
                    <updater>
                        <user>customer</user>
                        <context>4</context>
                     </updater>
                    <id>11423479</id>
                    <created>2009-08-05 13:28:33</created>
                    <updated>2013-11-21 10:23:13</updated>
                </handle>
                <message_sent>2012-11-15 13:19:36</message_sent>
                <confirm_ip>123.0.123.1</confirm_ip>
                <domain>
                    <name>handle-verification-used-owner.com</name>
                    <status>NOT_SET</status>
                    <deactivation>2012-11-30 13:19:36</deactivation>
                </domain>
                <domain>
                    <name>handle-verification-alias.com</name>
                    <status>SUCCESS</status>
                    <deactivation>2012-11-15 13:19:36</deactivation>
                </domain>
                <verification_mail>
                    <mail>
                        <id>121212</id>
                    </mail>
                    <status>PENDING</status>
                    <created>2012-11-01 13:19:36</created>
                </verification_mail>
                <owner>
                    <user>customer</user>
                    <context>4</context>
                </owner>
                <updater>
                    <user>customer</user>
                    <context>4</context>
                </updater>
                <created>2012-11-01 13:19:36</created>
                <updated>2013-11-21 10:47:55</updated>
            </handle_verification>
        </data>
        <status><code>S0344</code>
            <type>success</type><object>
                <type>handle_verification</type>
				<text>The data of the domain contact verification request could be inquired successfully.</text>
                <value>verification-pending</value>
            </object>
        </status>
    </result>
</response>