POST api/Triaje/Editar

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
triaje
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "idTriaje": 1,
  "idCita": 2,
  "fc": 1,
  "pa": "sample string 3",
  "temp": 1.0,
  "satO2": 1.0,
  "peso": 1.0,
  "talla": 1.0,
  "notas": "sample string 4",
  "idEstado": 5,
  "usuarioRegistra": "sample string 6",
  "fechaRegistro": "2026-07-29T12:55:51.2788354-05:00"
}

application/xml, text/xml

Sample:
<Triaje xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mantenimiento.Datos.Entidades">
  <fc>1</fc>
  <fechaRegistro>2026-07-29T12:55:51.2788354-05:00</fechaRegistro>
  <idCita>2</idCita>
  <idEstado>5</idEstado>
  <idTriaje>1</idTriaje>
  <notas>sample string 4</notas>
  <pa>sample string 3</pa>
  <peso>1</peso>
  <satO2>1</satO2>
  <talla>1</talla>
  <temp>1</temp>
  <usuarioRegistra>sample string 6</usuarioRegistra>
</Triaje>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{
  "codigo": 1,
  "resultado": true,
  "mensaje": "sample string 3",
  "data": "QEBA"
}

application/xml, text/xml

Sample:
<ResultadoTransaccion xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mantenimiento.Negocio.Poco">
  <codigo>1</codigo>
  <data>QEBA</data>
  <mensaje>sample string 3</mensaje>
  <resultado>true</resultado>
</ResultadoTransaccion>