POST api/members/register

Request Information

URI Parameters

None.

Body Parameters

UserCreateDTO
NameDescriptionTypeAdditional information
Account

string

None.

Password

string

None.

Role

integer

None.

Token

string

None.

Name

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Account": "sample string 1",
  "Password": "sample string 2",
  "Role": 3,
  "Token": "sample string 4",
  "Name": "sample string 5"
}

application/xml, text/xml

Sample:
<UserCreateDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AIProject.API.Models.DTO">
  <Account>sample string 1</Account>
  <Name>sample string 5</Name>
  <Password>sample string 2</Password>
  <Role>3</Role>
  <Token>sample string 4</Token>
</UserCreateDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.