Info
Purpose⚓
Retrieve information on a Contact Object.
Authority⚓
An Info Contact Request can be submitted only by Managing AR of the Contact Object.
Code Example⚓
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
xmlns:isocil="http://www.isoc.org.il/xml/epp/isocil-1.0"
xmlns:contact="urn:ietf:params:xml:ns:contact-1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0 epp-1.0.xsd
http://www.isoc.org.il/xml/epp/isocil-1.0 isocil-1.0.xsd
urn:ietf:params:xml:ns:contact-1.0 contact-1.0.xsd">
<command>
<info>
<contact:info>
<contact:id>AB-SR5933-IL</contact:id>
</contact:info>
</info>
<clTRID>AB-123002</clTRID>
</command>
</epp>
Legend⚓
<info>: Defines that the desired Registration Action, is an information retrieval action, where:<contact:info>: defines that the requested information if on a Contact Object.<contact:id>: Defines the queried Contact Object.
<clTRID>: AR's transaction identifier
Tags occurrence table⚓
| Tag | Occurrences (MIN-MAX) |
Size + Remarks |
|---|---|---|
<epp> |
1 | |
<command> |
1 | |
<info> |
1 | |
<contact:info> |
1 | |
<contact:id> |
1 | Must be an existing contact handle, belonging to the requesting AR. There are 2 viable structures: 1. XX-XX#-IL, where XX represents the 2 capital letters representing the regisrar, and # represents a string of numbers; 2. 3 characters of capital letters or hyphen, followed by numbers. Total length may not exceed 30 characters. |
<clTRID> |
1 | Must start with 2 capital letters representing the registrar, followed by a hyphen (-) and a string of numbers. Must be unique per request. Total length may not exceed 30 characters. |
Additional Response Data (<resData> block)⚓
The API Server's response upon the successful completion of an Info Contact Request:
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instanc"
xmlns:contact="urn:ietf:params:xml:ns:contact-1.0" xmlns:domain="urn:ietf:params:xml:ns:domain-1.0"
xmlns:isocil="http://www.isoc.org.il/xml/epp/isocil-1.0"
xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0 epp-1.0.xsdurn:ietf:params:xml:ns:contact-1.0
contact-1.0.xsdurn:ietf:params:xml:ns:domain-1.0 domain-1.0.xsdhttp://www.isoc.org.il/xml/epp/isocil-
1.0">
<response>
<result>
<code>1000</code>
<msg>Command completed successfully</msg>
</result>
<resData>
<contact:infData>
<contact:id>AB-SR5933-IL</contact:id>
<contact:postalInfo type="loc">
<contact:name>John Doe</contact:name>
<contact:org />
<contact:addr>
<contact:street>Moshe Levi 34</contact:street>
<contact:city>Rishon Lezion</contact:city>
<contact:cc>IL</contact:cc>
</contact:addr>
</contact:postalInfo>
<contact:voice>+972 3 9883301</contact:voice>
<contact:fax>+972 8 9770002</contact:fax>
<contact:email>[email protected]</contact:email>
<contact:crID>AB</contact:crID>
<contact:upDate>2006-01-23T16:14:46.000Z</contact:upDate>
<contact:crDate>2006-01-23T16:14:46.000Z</contact:crDate>
</contact:infData>
</resData>
<trID>
<clTRID>AB-123002</clTRID>
<svTRID>ISOCIL-AB756 20060208160300</svTRID>
</trID>
</response>
</epp>
Legend:⚓
<contact:infData>: The block containing the information on the Contact Object, where:<contact:id>: The Contact Object's Handle.<contact:postalInfo>: Contains the Contact Object's postal information.<contact:voice>: Contact's telephone number.<contact:fax>: Contact's fax number.<contact:email>: Contact's email address.<contact:crID>: Initials of the AR who created the Contact.<contact:upDate>: Last update of the Object.<contact:crDate>: Date of Object creation.<trID>: Transaction Identifier.