POST api/Parents/Register

Request Information

URI Parameters

None.

Body Parameters

ParentRegistrationParams
NameDescriptionTypeAdditional information
fullname

string

None.

username

string

None.

gender

string

None.

pw

string

None.

emailaddress

string

None.

Request Formats

application/json, text/json

Sample:
{
  "fullname": "sample string 1",
  "username": "sample string 2",
  "gender": "sample string 3",
  "pw": "sample string 4",
  "emailaddress": "sample string 5"
}

application/xml, text/xml

Sample:
<ParentRegistrationParams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/appliedline.gssman2016.webapi.Controllers">
  <emailaddress>sample string 5</emailaddress>
  <fullname>sample string 1</fullname>
  <gender>sample string 3</gender>
  <pw>sample string 4</pw>
  <username>sample string 2</username>
</ParentRegistrationParams>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>