POST api/egresos/insertar

Request Information

URI Parameters

None.

Body Parameters

Egresos
NameDescriptionTypeAdditional information
UsuarioGlobal

string

None.

User

string

None.

Titulo

string

None.

Descripcion

string

None.

Comprobante

integer

None.

Ingreso

decimal number

None.

Egreso

decimal number

None.

TipoIngreso

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "UsuarioGlobal": "sample string 1",
  "User": "sample string 2",
  "Titulo": "sample string 3",
  "Descripcion": "sample string 4",
  "Comprobante": 5,
  "Ingreso": 6.1,
  "Egreso": 7.1,
  "TipoIngreso": 8
}

application/xml, text/xml

Sample:
<Egresos xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplication2.Models">
  <Comprobante>5</Comprobante>
  <Descripcion>sample string 4</Descripcion>
  <Egreso>7.1</Egreso>
  <Ingreso>6.1</Ingreso>
  <TipoIngreso>8</TipoIngreso>
  <Titulo>sample string 3</Titulo>
  <User>sample string 2</User>
  <UsuarioGlobal>sample string 1</UsuarioGlobal>
</Egresos>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.