POST api/v1/RegisterStep2
Request Information
URI Parameters
None.
Body Parameters
RegisterStep2| Name | Description | Type | Additional information |
|---|---|---|---|
| fname | string |
None. |
|
| lname | string |
None. |
|
| dob | string |
None. |
|
| schname | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"fname": "sample string 1",
"lname": "sample string 2",
"dob": "sample string 3",
"schname": "sample string 4"
}
application/xml, text/xml
Sample:
<RegisterStep2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppBridge"> <dob>sample string 3</dob> <fname>sample string 1</fname> <lname>sample string 2</lname> <schname>sample string 4</schname> </RegisterStep2>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RegisterResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| status | string |
None. |
|
| uid | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": "sample string 1",
"uid": 2
}
application/xml, text/xml
Sample:
<RegisterResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppBridge"> <status>sample string 1</status> <uid>2</uid> </RegisterResponse>