POST api/SignUp

Request Information

URI Parameters

None.

Body Parameters

APIUser
NameDescriptionTypeAdditional information
User_ID

integer

None.

Name

string

None.

Email

string

None.

Phone_No

string

None.

Password

string

None.

CreatedDate

string

None.

UpdatedDate

string

None.

Request Formats

application/json, text/json

Sample:
{
  "User_ID": 1,
  "Name": "sample string 2",
  "Email": "sample string 3",
  "Phone_No": "sample string 4",
  "Password": "sample string 5",
  "CreatedDate": "sample string 6",
  "UpdatedDate": "sample string 7"
}

application/xml, text/xml

Sample:
<APIUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SelfieApp.Models">
  <CreatedDate>sample string 6</CreatedDate>
  <Email>sample string 3</Email>
  <Name>sample string 2</Name>
  <Password>sample string 5</Password>
  <Phone_No>sample string 4</Phone_No>
  <UpdatedDate>sample string 7</UpdatedDate>
  <User_ID>1</User_ID>
</APIUser>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.