Table of Contents

Function

The CertificateContact List task inquires the SSL contacts. More information about SSL contacts can be found here: SSL Contacts Information

Further information about list inquiries you can find here.

Description

Route: POST /certificate/_search

Query parameters

The following keywords are returned by default:

  • id
  • fname
  • lname
  • organization
  • owner


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

  • phone
  • fax
  • email
  • title
  • address
  • pcode 
  • city
  • country
  • state
  • updater


Request
{
  "filters": [
    {
      "key": "fname",
      "value": "Json",
      "operator": "EQUAL"
    },
    {
      "key": "lname",
      "value": "Doe",
      "operator": "EQUAL"
    }
  ],
  "view": {
    "children": 1,
    "limit": 10
  },
  "orders":[
    {
      "key": "fname",
      "type": "ASC"
    }
  ]
}
Response
{
  "status" : {
    "code" : "S400205",
    "text" : Contacts were inquired successfully.",
    "type" : "SUCCESS"
  },
  "object" : {
    "type" : "SslContact",
    "summary" : 3
  },
  "data" : [ {
    "created" : "2009-09-18T11:57:48.000+0200",
    "updated" : "2017-10-13T10:05:46.000+0200",
    "fname" : "Json",
    "lname" : "Doe",
    "organization" : "examplecompany",
    "owner" : {
      "context" : 4,
      "user" : "customer"
    },
    "id" : 11616
  }, {
    "created" : "2009-09-18T11:57:48.000+0200",
    "updated" : "2017-10-13T10:05:47.000+0200",
    "fname" : "Json",
    "lname" : "Doe",
    "organization" : "examplecompany",
    "owner" : {
      "context" : 4,
      "user" : "customer"
    },
    "id" : 11617
  }, {
    "created" : "2009-09-18T11:57:48.000+0200",
    "updated" : "2017-11-13T12:16:57.000+0100",
    "fname" : "Json",
    "lname" : "Doe",
    "organization" : "examplecompany",
    "owner" : {
      "context" : 4,
      "user" : "customer"
    },
    "id" : 11618
  } ]
}
   

Task code: 400205
Uses  Contact object

Keywords

The following keywords are returned by default:

  • id
  • first
  • last
  • organization
  • owner


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

  • phone
  • fax
  • email
  • title
  • address
  • postal_code
  • city
  • country
  • state
  • updater


Request
<request>
	<auth>
		<user>customer</user>
		<context>4</context>
		<password>password</password>
	</auth>
	<task>
		<code>400205</code>
		<view>
			<limit>10</limit>
			<offset>0</offset>
		</view>
		<key>first</key>
	<key>last</key>
	<key>organization</key>
	<key>owner</key>
	<key>id</key>
	<key>created</key>
	<key>updated</key>
	</task>
</request>
Response
<response>
	<result>
		<data>
			<summary>2</summary>
			<contact>
				<first>Firstname</first>
				<last>Lastname</last>
				<organization>examplecompany</organization>
				<owner>
					<user>customer</user>
					<context>4</context>
				</owner>
				<id>27</id>
				<created>2014-08-27 16:56:44</created>
				<updated>2021-09-13 15:40:09</updated>
			</contact>
			<contact>
				<first>Joe</first>
				<last>Example</last>
				<organization>examplecompany</organization>
				<user>customer</user>
					<context>4</context>
				</owner>
				<id>37819</id>
				<created>2022-08-04 15:41:04</created>
				<updated>2022-08-04 15:41:04</updated>
			</contact>
		</data>
		<status>
			<code>S400205</code>
			<text>Contacts were inquired successfully.</text>
			<type>success</type>
		</status>
	</result>
	<stid>20220804-app3-dev-8365</stid>
</response>