POST api/users/create
DOCUMENTACION NO DISPONIBLE
Request Information
URI Parameters
None.
Body Parameters
CreateUserBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
|
DOCUMENTACION NO DISPONIBLE |
string |
Required String length: inclusive between 0 and 100 |
|
| Username |
DOCUMENTACION NO DISPONIBLE |
string |
Required |
| Nombre |
DOCUMENTACION NO DISPONIBLE |
string |
Required String length: inclusive between 0 and 100 |
| Apellido |
DOCUMENTACION NO DISPONIBLE |
string |
Required String length: inclusive between 0 and 100 |
| Password |
DOCUMENTACION NO DISPONIBLE |
string |
Required Data type: Password String length: inclusive between 6 and 100 |
| ConfirmPassword |
DOCUMENTACION NO DISPONIBLE |
string |
Required Data type: Password |
Request Formats
application/json, text/json
Sample:
{
"Email": "sample string 1",
"Username": "sample string 2",
"Nombre": "sample string 3",
"Apellido": "sample string 4",
"Password": "sample string 5",
"ConfirmPassword": "sample string 6"
}
application/xml, text/xml
Sample:
<CreateUserBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <Apellido>sample string 4</Apellido> <ConfirmPassword>sample string 6</ConfirmPassword> <Email>sample string 1</Email> <Nombre>sample string 3</Nombre> <Password>sample string 5</Password> <Username>sample string 2</Username> </CreateUserBindingModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.