Info nsgroup[Link]

Purpose

Allows the registrar to retrieve information about the current status of an existing nsgroup.

The structure of the command is identical to that of a <delete> nsgroup:

  • <nsgroup:name> is required. Contains the name of the name server group.

Information for only one name server group can be retrieved within the same command.

Please refer to the examples to see a complete request.

Examples[Link]

A info nsgroup command looks like:

<?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-instance"
  xmlns:nsgroup="http://www.dns.be/xml/epp/nsgroup-1.0"
  xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0 epp-1.0.xsd
  http://www.dns.be/xml/epp/nsgroup-1.0 nsgroup-1.0.xsd">
  <command>
    <info>
      <nsgroup:info>
        <nsgroup:name>test</nsgroup:name>
      </nsgroup:info>
    </info>
    <clTRID>nsgroup-test-456</clTRID>
  </command>
</epp>

The EPP server responds with the information for that nsgroup:

<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0" xmlns:nsgroup="http://www.dns.be/xml/epp/nsgroup-1.0">
  <response>
    <result code="1000">
      <msg>Command completed successfully</msg>
    </result>
    <resData>
      <nsgroup:infData>
        <nsgroup:name>test</nsgroup:name>
        <nsgroup:ns>bebe.test.be</nsgroup:ns>
      </nsgroup:infData>
    </resData>
    <trID>
      <clTRID>nsgroup-test-456</clTRID>
      <svTRID>dnsbe-0</svTRID>
    </trID>
  </response>
</epp>