PUT api/liquidaciones/{id}/periodos/{periodoId}/facturas/{facturaId}/paciente

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

periodoId

integer

Required

facturaId

integer

Required

Body Parameters

Paciente
NameDescriptionTypeAdditional information
Id

integer

None.

Nombre

string

None.

Apellido

string

None.

NroDoc

string

None.

Sexo

string

None.

Activo

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Nombre": "sample string 2",
  "Apellido": "sample string 3",
  "NroDoc": "sample string 4",
  "Sexo": "sample string 5",
  "Activo": true
}

application/xml, text/xml

Sample:
<Paciente xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClasesMutual.Prestadores">
  <Activo>true</Activo>
  <Apellido>sample string 3</Apellido>
  <Id>1</Id>
  <Nombre>sample string 2</Nombre>
  <NroDoc>sample string 4</NroDoc>
  <Sexo>sample string 5</Sexo>
</Paciente>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'Paciente'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.