POST api/Account
사용자정보 신규 등록하기
Detailed Information
No documentation available.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| model | 등록할 사용자정보 |
Define this parameter in the request body. |
Parameter Information
model
| Property | Description |
|---|---|
| UserName (String) |
[*]사용자 이름 |
| Password (String) |
[*]암호 |
| ConfirmPassword (String) |
[*]암호 확인 |
Request body formats
application/json, text/json
Sample:
{
"UserName": "sample string 1",
"Password": "sample string 2",
"ConfirmPassword": "sample string 3"
}
application/xml, text/xml
Sample:
<RegisterModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MagicLamp.MVC4WebAPI.Models"> <ConfirmPassword>sample string 3</ConfirmPassword> <Password>sample string 2</Password> <UserName>sample string 1</UserName> </RegisterModel>
application/x-www-form-urlencoded
Sample:
Sample not available.