Table of Contents

Description

The Flags object contains optional information for various events, for example, after a domain create or a domain transfer.

Structure

Keyword JSONKeyword XMLOccursTypeFormatDescription
autoRenewautorenew0 - 1boolean

Displays activation status of automatic domain lifetime extension. Relevant for AutoDelete accounts.

  • false = autorenew not activated
  • true = autorenew activated

Default value = false

For XML, 0 (false) and 1 (true) can also be used.

legalDeletelegal_delete0 - 1boolean

Indicates whether a domain has been deleted for legal reasons, e.g. due to a trademark infringement.

  • false = not deleted for legal reasons
  • true = deleted for legal reasons

Default value = false

For XML, 0 (false) and 1 (true) can also be used.

Examples

"flags": {
	"autoRenew": true,
	"legalDelete": false
}
<flags>
	<autorenew>1</autorenew>
	<legal_delete>0</legal_delete>
</flags>