POST api/persons/beginregistration

Request Information

URI Parameters

None.

Body Parameters

BeginPersonRegistrationRequest
NameDescriptionTypeAdditional information
FirstName

string

None.

LastName

string

None.

Email

string

None.

TermsOfServiceKeywords

Collection of KeywordSelection

None.

Request Formats

application/json, text/json

Sample:
{
  "FirstName": "sample string 1",
  "LastName": "sample string 2",
  "Email": "sample string 3",
  "TermsOfServiceKeywords": [
    {
      "KeywordID": 1,
      "Choice": 0
    },
    {
      "KeywordID": 1,
      "Choice": 0
    }
  ]
}

application/xml, text/xml

Sample:
<BeginPersonRegistrationRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Email>sample string 3</Email>
  <FirstName>sample string 1</FirstName>
  <LastName>sample string 2</LastName>
  <TermsOfServiceKeywords>
    <KeywordSelection>
      <Choice>Unknown</Choice>
      <KeywordID>1</KeywordID>
    </KeywordSelection>
    <KeywordSelection>
      <Choice>Unknown</Choice>
      <KeywordID>1</KeywordID>
    </KeywordSelection>
  </TermsOfServiceKeywords>
</BeginPersonRegistrationRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.