Table of Contents

Function

The order type TransferOutList displays the data of several running outgoing transfers for which an ACK and a LATEACK can be given.

You can find more information about list queries here

Description

Route: POST /transferout/_search

Query parameters

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

  • created
  • end
  • gainingRegistrar
  • id
  • loosingRegistrar
  • reminder
  • start
  • sld
  • status
  • subtld
  • tld
  • transaction
  • type
  • updated
Request
{
   "view": {
      "limit": 10,
      "offset": 0,
      "children": true,
      "from": "2019-06-01T12:00:00.6306444Z",
      "to": "2019-07-07T14:17:33.6306444Z"
   }
}
Response
{
    "status": {
        "code": "S0106001",
        "text": "Transfer data have been inquired successfully.",
        "type": "SUCCESS"
    },
    "object": {
        "type": "TransferOut",
        "summary": 1
    },
    "data": [
        {
            "created": "2009-06-16T17:22:07.000+0200",
            "updated": "2018-11-05T15:27:30.000+0100",
            "owner": {
                "context": 4,
                "user": "exampleuser"
            },
            "domain": "example.com",
            "start": "2009-06-16T14:52:23.000+0200",
            "reminder": "2009-06-19T14:52:23.000+0200",
            "end": "2009-06-21T14:52:23.000+0200"
        }
    ]
}

Task code: 0106001
Uses Transfer object

Keywords

The following keywords are returned by default:

  • domain
  • owner
  • created
  • updated

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

  • sld
  • tld
  • subtld,
  • id
  • type
  • status
  • start
  • end
  • gaining_registrar
  • loosing_registrar
  • reminder
  • transaction
Request
<request>
	<auth>
		<user>customer</user>
		<password>password</password>
		<context>4</context>
	</auth>
	<task>
		<code>0106001</code>
		<view>
			<children>true</children>
		</view>
		<key>start</key>
		<key>end</key>
		<key>gaining_registrar</key>
		<key>loosing_registrar</key>
		<key>reminder</key>
		<key>updated</key>
		<key>transaction</key>
	</task>
</request>
Response
<response>
	<result>
		<data>
			<transfer>
				<transaction>1213629750</transaction>
				<domain>example.com</domain>
				<gaining_registrar>registrarA</gaining_registrar>
				<loosing_registrar>registrarB</loosing_registrar>
				<start>2009-06-16 14:52:23</start>
				<reminder>2009-06-19 14:52:23</reminder>
				<end>2009-06-21 14:52:23</end>
				<owner>
					<user>customer</user>
					<context>4</context>
				</owner>
				<created>2009-06-16 17:22:07</created>
				<updated>2012-06-12 13:24:35</updated>
			</transfer>
			<transfer>
				<transaction>1213629751</transaction>
				<domain>example1.com</domain>
				<gaining_registrar>registrarA</gaining_registrar>
				<loosing_registrar>registrarB</loosing_registrar>
				<start>2009-06-16 14:52:23</start>
				<reminder>2009-06-19 14:52:23</reminder>
				<end>2009-06-21 14:52:23</end>
				<owner>
					<user>admin_8</user>
					<context>4</context>
				</owner>
				<created>2009-06-16 17:22:07</created>
				<updated>2012-06-12 13:24:35</updated>
			</transfer>
			<transfer>
				<transaction>1213629752</transaction>
				<domain>example2.com</domain>
				<gaining_registrar>registrarA</gaining_registrar>
				<loosing_registrar>registrarB</loosing_registrar>
				<start>2009-06-16 14:52:23</start>
				<reminder>2009-06-19 14:52:23</reminder>
				<end>2009-06-21 14:52:23</end>
				<owner>
					<user>customer</user>
					<context>4</context>
				</owner>
				<created>2009-06-16 17:22:07</created>
				<updated>2015-06-10 08:35:08</updated>
			</transfer>
		</data>
		<status>
			<code>S0106001</code>
			<text>Transfer data have been inquired successfully.</text>
			<type>success</type>
		</status>
	</result>
</response>