POST api/Pauta

Request Information

URI Parameters

None.

Body Parameters

Identidad
NameDescriptionTypeAdditional information
Rut

string

None.

Ano

integer

None.

Mes

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,
  "IdCliente": 4,
  "IdInstalacion": 5,
  "IdEmpresa": 6,
  "Fecha": "2026-07-27T03:49:05.3161014-04: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-07-27T03:49:05.3161014-04:00</Fecha>
  <IdCliente>4</IdCliente>
  <IdEmpresa>6</IdEmpresa>
  <IdInstalacion>5</IdInstalacion>
  <Mes>3</Mes>
  <Rut>sample string 1</Rut>
</Identidad>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response 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>