Update reseller[Link]

Purpose

Update the information of a reseller.

The implementation of the organisation extension is limited to the reseller role, organisation name and organisation website. DNS Belgium doesn’t require more information and any extra information provided by the registrar will be ignored.

The organization extension allows add, rem and chg. DNS Belgium does not support add or rem since add/rem is used to add or remove contacts, roles and statuses. DNS Belgium does not support contacts and statuses and only supports 1 role (reseller). When using add or rem, the EPP server returns 2102 Unimplemented option.

The only supported update on Resellers is <chg>. There are 2 fields that can be updated:

  • <org:url> contains the website of the reseller. If the field is provided in the command, it must have a value.

  • <org:name> contains the organisation name of the reseller. If the field is provided in the command, it must have a value.

All other attributes are not supported and will be ignored.

Please refer to the examples to see a complete request.

Examples[Link]

An update reseller command looks like:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
  <command>
    <update>
      <org:update xmlns:org="urn:ietf:params:xml:ns:epp:org-1.0">
        <org:id>reseller01</org:id>
        <org:chg>
          <org:postalInfo type="loc">
            <org:name>New reseller organization name</org:name>
          </org:postalInfo>
          <org:url>https://www.new-url.be</org:url>
        </org:chg>
      </org:update>
    </update>
  </command>
</epp>

In case of successful update, the EPP server responds with a standard EPP response message:

<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
  <response>
    <result code="1000">
      <msg>Command completed successfully</msg>
    </result>
    <trID>
      <clTRID>aa1c9912-21db-4984-a311-c675aea2f9b8</clTRID>
      <svTRID>dnsbe-121564676</svTRID>
    </trID>
  </response>
</epp>