POST api/Pauta
Request Information
URI Parameters
None.
Body Parameters
Identidad| Name | Description | Type | Additional information |
|---|---|---|---|
| Rut | string |
None. |
|
| Ano | integer |
None. |
|
| Mes | integer |
None. |
|
| IdCartera | integer |
None. |
|
| IdCliente | integer |
None. |
|
| IdInstalacion | integer |
None. |
|
| IdEmpresa | integer |
None. |
|
| Fecha | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Rut": "sample string 1",
"Ano": 2,
"Mes": 3,
"IdCartera": 4,
"IdCliente": 5,
"IdInstalacion": 6,
"IdEmpresa": 7,
"Fecha": "2026-09-20T12:54:01.0905827-03:00"
}
application/xml, text/xml
Sample:
<Identidad xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiConectys.Models"> <Ano>2</Ano> <Fecha>2026-09-20T12:54:01.0905827-03:00</Fecha> <IdCartera>4</IdCartera> <IdCliente>5</IdCliente> <IdEmpresa>7</IdEmpresa> <IdInstalacion>6</IdInstalacion> <Mes>3</Mes> <Rut>sample string 1</Rut> </Identidad>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>