PUT api/Usuarios
Request Information
URI Parameters
None.
Body Parameters
UsuarioName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
IdEmpleado | integer |
None. |
|
Nombre | string |
None. |
|
Imagen | string |
None. |
|
Password | string |
None. |
|
IdEmpresa | integer |
None. |
|
Estado | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "Id": 1, "IdEmpleado": 2, "Nombre": "sample string 3", "Imagen": "sample string 4", "Password": "sample string 5", "IdEmpresa": 6, "Estado": "sample string 7" }
application/xml, text/xml
Sample:
<Usuario xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GeoTrace_API.Models"> <Estado>sample string 7</Estado> <Id>1</Id> <IdEmpleado>2</IdEmpleado> <IdEmpresa>6</IdEmpresa> <Imagen>sample string 4</Imagen> <Nombre>sample string 3</Nombre> <Password>sample string 5</Password> </Usuario>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>