PUT api/liquidaciones/{id}/periodos/{periodoId}/facturas/{facturaId}/paciente
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
|
| periodoId | integer |
Required |
|
| facturaId | integer |
Required |
Body Parameters
Paciente| Name | Description | Type | Additional 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:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.