Table of Contents

Function

The ContactVerificationHistoryList task inquires multiple or all domain contact verifications with some detail information.

Description

Route: POST ​/contact​/verification​/history​/_search

Query parameters

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

  • confirmed
  • action
  • deactivation
  • created
  • failed
  • name
  • comment
  • updated
  • status
  • handle.id
  • owner
  • updater
Request
{
  "view": {
    "children": 1,
    "limit": 1,
    "from": "2010-01-01T00:00:00.000+0000",
    "to": "2022-01-31T00:00:00.000+0000"
  }
Response
{
    "stid": "20221223-app2-dev-24603",
    "status": {
        "code": "S0355",
        "text": "The archived orders for domain contact verification were successfully determined.",
        "type": "SUCCESS"
    },
    "object": {
        "type": "ContactVerification",
        "summary": 31758
    },
    "data": [
        {
            "created": "2015-04-21T11:26:58.000+0200",
            "updated": "2022-05-08T05:00:07.000+0200",
            "owner": {
                "context": 451,
                "user": "1351105417"
            },
            "updater": {
                "context": 44,
                "user": "system.domain"
            },
            "reference": "85c785b7-3098-44a9-80ab-b12782d24551",
            "messageSend": "2015-05-03T11:43:56.000+0200",
            "failed": "2015-05-21T11:27:11.000+0200",
            "contact": {
                "id": 489
            }
        }
    ]
}

Task code: 0355
Uses Contact Verification object

Keywords

The following keywords are returned by default:

  • confirmed
  • created
  • updated
  • reference
  • confirm.ip
  • failed
  • name
  • deactivation
  • status
  • domain
  • handle.id
  • owner
  • updater

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

  • action
  • comment
  • message_sent
Request
<request>
    <auth>
        <user>customer</user>
        <password>password</password>
        <context>4</context>
    </auth>
    <task>
        <code>0355</code>
        <view>
            <offset>0</offset>
            <limit>10</limit>
            <children>0</children>
            <from>2010-01-01 00:00:00</from>
            <to>2022-01-31 00:00:00</to>
        </view>
        <where>
            <key>handle.id</key>
            <operator>like</operator>
            <value>21640257</value>
        </where>
        <key>action</key>
    </task>
</request>
Response
<response>
    <result>
        <data>
            <summary>1</summary>
            <handle_verification>
                <handle>
                    <id>21640257</id>
                </handle>
                <reference>0fe79aa6-57df-4768-898d-aed5df1c6a8f</reference>
                <failed>2016-10-15 23:36:21</failed>
                <action>CREATE</action>
                <owner>
                    <user>customer</user>
                    <context>4</context>
                </owner>
                <updater>
                    <user>customer</user>
                    <context>4</context>
                </updater>
                <created>2016-09-15 23:36:03</created>
                <updated>2022-06-01 05:00:08</updated>
            </handle_verification>
        </data>
        <status>
            <code>S0355</code>
            <text>The archived orders for domain contact verification were successfully determined.</text>
            <type>success</type>
        </status>
    </result>
    <stid>20221223-app2-dev-23882</stid>
</response>