POST api/Apertura

Request Information

URI Parameters

None.

Body Parameters

CajaModel
NameDescriptionTypeAdditional information
Fecha

string

None.

NumeroModulo

integer

None.

Total

decimal number

None.

Ingreso

decimal number

None.

Retiro

decimal number

None.

Supervisor

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Fecha": "sample string 1",
  "NumeroModulo": 2,
  "Total": 3.1,
  "Ingreso": 4.1,
  "Retiro": 5.1,
  "Supervisor": "sample string 6"
}

application/xml, text/xml

Sample:
<CajaModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Controllers">
  <Fecha>sample string 1</Fecha>
  <Ingreso>4.1</Ingreso>
  <NumeroModulo>2</NumeroModulo>
  <Retiro>5.1</Retiro>
  <Supervisor>sample string 6</Supervisor>
  <Total>3.1</Total>
</CajaModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CajaModel
NameDescriptionTypeAdditional information
Fecha

string

None.

NumeroModulo

integer

None.

Total

decimal number

None.

Ingreso

decimal number

None.

Retiro

decimal number

None.

Supervisor

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Fecha": "sample string 1",
  "NumeroModulo": 2,
  "Total": 3.1,
  "Ingreso": 4.1,
  "Retiro": 5.1,
  "Supervisor": "sample string 6"
}

application/xml, text/xml

Sample:
<CajaModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Controllers">
  <Fecha>sample string 1</Fecha>
  <Ingreso>4.1</Ingreso>
  <NumeroModulo>2</NumeroModulo>
  <Retiro>5.1</Retiro>
  <Supervisor>sample string 6</Supervisor>
  <Total>3.1</Total>
</CajaModel>