Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
PUT /api/v1/sor/123/people/124 HTTP/1.1
Host: test-registry.rutgers.edu
Content-Type: application/xml
Authorization: Basic cmF0czpSQVQxMjM0

<?xml version="1.0"?>
<open-registry-modify-person>
    <dob>1978-03-11</dob>
    <ssn>195534444</ssn>
    <gender>m<<gender>M</gender>
    <names>
          <name type="FORMAL">
                 <prefix>Mr.</prefix>
                 <first-name>Joseph</first-name>
                  <middle-name>John</middle-name>
                 <last-name>Jackson</last-name>
           </name>
 prefix="Mr." first="Joseph" middle="John" last="Jackson"/>
    </names>
</open-registry-modify-person>

Sample Response:

Code Block
HTTP/1.x 204 No Content

...