POST api/account/UserSignup

Request Information

URI Parameters

None.

Body Parameters

UserSignUpModel
NameDescriptionTypeAdditional information
Id

integer

None.

Email

string

None.

Password

string

None.

FirstName

string

None.

LastName

string

None.

Username

string

None.

Name

string

None.

Nickname

string

None.

Role

UserType

None.

WebAddress

string

None.

MobileNumber

string

None.

DateOfBirth

date

None.

Culture

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Email": "sample string 2",
  "Password": "sample string 3",
  "FirstName": "sample string 4",
  "LastName": "sample string 5",
  "Username": "sample string 6",
  "Name": "sample string 7",
  "Nickname": "sample string 8",
  "Role": 1,
  "WebAddress": "sample string 9",
  "MobileNumber": "sample string 10",
  "DateOfBirth": "2025-12-12T01:34:54.4119743+01:00",
  "Culture": "sample string 12"
}

application/xml, text/xml

Sample:
<UserSignUpModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Silver.Agenda.Core.Domain.Model">
  <Culture>sample string 12</Culture>
  <DateOfBirth>2025-12-12T01:34:54.4119743+01:00</DateOfBirth>
  <Email>sample string 2</Email>
  <FirstName>sample string 4</FirstName>
  <Id>1</Id>
  <LastName>sample string 5</LastName>
  <MobileNumber>sample string 10</MobileNumber>
  <Name>sample string 7</Name>
  <Nickname>sample string 8</Nickname>
  <Password>sample string 3</Password>
  <Role>Docter</Role>
  <Username>sample string 6</Username>
  <WebAddress>sample string 9</WebAddress>
</UserSignUpModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'UserSignUpModel'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.