Merge branch 'master' of github.com:domify/registry

This commit is contained in:
Martin Lensment 2015-01-22 12:55:30 +02:00
commit 81c3d769de
2 changed files with 40 additions and 38 deletions

View file

@ -2,23 +2,24 @@
### Contact create ### Contact create
| Field name | Min-max | Field description | Field name Min-max Field description
| ----------------------- |---------|------------------ | ----------------------- ------- -----------------
| `<create>` | 1 | | <create> 1
| `-<contact:create>` | 1 | Attribute: xmlns:domain="urn:ietf:params:xml:ns:contact-1.0" | <contact:create> 1 Attribute: xmlns:domain="urn:ietf:params:xml:ns:contact-1.0"
| `-<contact:voice>` | 1 | Phone | <contact:voice> 1 Phone
| `-<contact:email>` | 1 | E-mail | <contact:email> 1 E-mail
| `-<contact:Ident>` | 1 | Contact identificator. Attribute: type="ico / op / passport / birthday" | <contact:Ident> 1 Contact identificator.
| `-<contact:postalInfo>` | 1 | Contact information | Attribute: type="ico / op / passport / birthday"
| `--<contact:name>` | 1 | Full name | <contact:postalInfo> 1 Contact information
| `--<contact:addr>` | 1 | Address | <contact:name> 1 Full name
| `---<contact:street>` | 0-1 | Street name | <contact:addr> 1 Address
| `---<contact:city>` | 1 | City name | <contact:street> 0-1 Street name
| `---<contact:cc>` | 1 | Country code | <contact:city> 1 City name
| `<extension>` | 0-1 | | <contact:cc>` 1 Country code
| `-<eis:extdata>` | 0-1 | Attribute: xmlns:eis="urn:ee:eis:xml:epp:eis-1.0" | <extension> 0-1
| `--<eis:legalDocument>` | 1 | Base64 encoded document. Attribute: type="pdf" | <eis:extdata> 0-1 Attribute: xmlns:eis="urn:ee:eis:xml:epp:eis-1.0"
| `<clTRID>` | 0-1 | Client transaction id | <eis:legalDocument> 1 Base64 encoded document. Attribute: type="pdf"
<clTRID> 0-1 Client transaction id
NB! Extension is not implemented yet! NB! Extension is not implemented yet!

View file

@ -3,36 +3,37 @@ Here are functions like login, logout, hello, poll
### Login request ### Login request
| Field name | Min-max | Field description | Field name Min-max Field description
| ----------------------- |---------|------------------ | ----------------------- ------- -----------------
| `<login>` | 1 | | <login> 1
| `-<clID>` | 1 | Username | <clID> 1 Username
| `-<pw>` | 1 | Password | <pw> 1 Password
| `-<options>` | 0-1 | | <options> 0-1
| `--<version>` | 0-1 | 1.0 | <version> 0-1 1.0
| `--<lang>` | 0-1 | en | <lang> 0-1 en
| `-<svcs>` | 0-1 | | <svcs> 0-1
| `--<objURI>` | 0-n | Object URI that is going to be used in current connection. | <objURI> 0-n Object URI that is going to be used in current connection.
| `--<svcExtension>` | 0-1 | | <svcExtension> 0-1
| `---<extURI>` | 0-n | Extension URI that is going to be used in current connection. | <extURI> 0-n Extension URI that is going to be used in current connection.
| `<clTRID>` | 0-1 | Client transaction id | <clTRID> 0-1 Client transaction id
[EXAMPLE REQUEST AND RESPONSE](/doc/epp-examples.md#epp-session-when-connected-with-valid-user-logs-in-epp-user) [EXAMPLE REQUEST AND RESPONSE](/doc/epp-examples.md#epp-session-when-connected-with-valid-user-logs-in-epp-user)
### Logout request ### Logout request
| Field name | Min-max | Field description | Field name Min-max Field description
| ----------------------- |---------|------------------ | ----------------------- ------- -----------------
| `<logout>` | 1 | | <logout> 1
| `<clTRID>` | 0-1 | Client transaction id | <clTRID> 0-1 Client transaction id
[EXAMPLE REQUEST AND RESPONSE](/doc/epp-examples.md#epp-session-when-connected-with-valid-user-logs-out-epp-user) [EXAMPLE REQUEST AND RESPONSE](/doc/epp-examples.md#epp-session-when-connected-with-valid-user-logs-out-epp-user)
### Poll request ### Poll request
| Field name | Min-max | Field description | Field name Min-max Field description
| ----------------------- |---------|------------------ | ----------------------- ------- -----------------
| `<poll>` | 1 | Rec for receiving messages, ack for dequeuing Attribute: op="req / ack" | <poll> 1 Rec for receiving messages, ack for dequeuing
| `<clTRID>` | 0-1 | Client transaction id | Attribute: op="req / ack"
<clTRID> 0-1 Client transaction id
[EXAMPLE REQUEST AND RESPONSE](/doc/epp-examples.md#epp-poll-with-valid-user-queues-and-dequeues-messages) [EXAMPLE REQUEST AND RESPONSE](/doc/epp-examples.md#epp-poll-with-valid-user-queues-and-dequeues-messages)