POST api/usuarios

Request Information

URI Parameters

None.

Body Parameters

Usuario
NameDescriptionTypeAdditional information
ID_USUARIO

integer

None.

NOMBRE_USUARIO

string

None.

CONTRASENA

string

None.

GMAIL

string

None.

TIPO

string

None.

NUEVO

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "ID_USUARIO": 1,
  "NOMBRE_USUARIO": "sample string 2",
  "CONTRASENA": "sample string 3",
  "GMAIL": "sample string 4",
  "TIPO": "sample string 5",
  "NUEVO": true
}

application/xml, text/xml

Sample:
<Usuario xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Estudio_de_Belleza.Models">
  <CONTRASENA>sample string 3</CONTRASENA>
  <GMAIL>sample string 4</GMAIL>
  <ID_USUARIO>1</ID_USUARIO>
  <NOMBRE_USUARIO>sample string 2</NOMBRE_USUARIO>
  <NUEVO>true</NUEVO>
  <TIPO>sample string 5</TIPO>
</Usuario>

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.