mirror of
https://github.com/instant-labs/instant-epp.git
synced 2025-02-08 09:52:03 +00:00
From RFC 5731: This element MUST contain an "avail" attribute whose value indicates object availability (can it be provisioned or not) at the moment the <check> command was completed. A value of "1" or "true" means that the object can be provisioned. A value of "0" or "false" means that the object can not be provisioned.
23 lines
792 B
XML
23 lines
792 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
|
<response>
|
|
<result code="1000">
|
|
<msg>Command completed successfully</msg>
|
|
</result>
|
|
<resData>
|
|
<domain:chkData xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
|
<domain:cd>
|
|
<domain:name avail="1">eppdev.com</domain:name>
|
|
</domain:cd>
|
|
<domain:cd>
|
|
<domain:name avail="false">eppdev.net</domain:name>
|
|
</domain:cd>
|
|
</domain:chkData>
|
|
</resData>
|
|
<trID>
|
|
<clTRID>cltrid:1626454866</clTRID>
|
|
<svTRID>RO-6879-1627224678242975</svTRID>
|
|
</trID>
|
|
</response>
|
|
</epp>
|