POST api/User/RegisterUser
Request Information
URI Parameters
None.
Body Parameters
UserRegisterEntity| Name | Description | Type | Additional information |
|---|---|---|---|
| FName | string |
None. |
|
| LName | string |
None. |
|
| string |
None. |
||
| ContactNo | string |
None. |
|
| ProfilePic | string |
None. |
|
| DOB_Month | integer |
None. |
|
| DOB_Year | integer |
None. |
|
| DeviceId | string |
None. |
|
| DeviceType | integer |
None. |
|
| LoginType | integer |
None. |
|
| FCM_Token | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"fName": "sample string 1",
"lName": "sample string 2",
"email": "sample string 3",
"contactNo": "sample string 4",
"profilePic": "sample string 5",
"doB_Month": 1,
"doB_Year": 1,
"deviceId": "sample string 6",
"deviceType": 1,
"loginType": 1,
"fcM_Token": "sample string 7"
}
text/xml
Sample:
<UserRegisterEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Entity"> <ContactNo>sample string 4</ContactNo> <DOB_Month>1</DOB_Month> <DOB_Year>1</DOB_Year> <DeviceId>sample string 6</DeviceId> <DeviceType>1</DeviceType> <Email>sample string 3</Email> <FCM_Token>sample string 7</FCM_Token> <FName>sample string 1</FName> <LName>sample string 2</LName> <LoginType>1</LoginType> <ProfilePic>sample string 5</ProfilePic> </UserRegisterEntity>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |