POST api/report-estadisticas

Request Information

URI Parameters

None.

Body Parameters

FiltrosEstadisticas
NameDescriptionTypeAdditional information
FechaInicio

string

None.

FechaFin

string

None.

IdSucursal

integer

None.

IdOrigen

integer

None.

IdSubOrigen

integer

None.

Funcion

integer

None.

IdUsuario

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "FechaInicio": "sample string 1",
  "FechaFin": "sample string 2",
  "IdSucursal": 1,
  "IdOrigen": 3,
  "IdSubOrigen": 4,
  "Funcion": 5,
  "IdUsuario": 6
}

application/xml, text/xml

Sample:
<FiltrosEstadisticas xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Model.Dto">
  <FechaFin>sample string 2</FechaFin>
  <FechaInicio>sample string 1</FechaInicio>
  <Funcion>5</Funcion>
  <IdOrigen>3</IdOrigen>
  <IdSubOrigen>4</IdSubOrigen>
  <IdSucursal>1</IdSucursal>
  <IdUsuario>6</IdUsuario>
</FiltrosEstadisticas>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GenericResponse
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2",
  "Data": {}
}

application/xml, text/xml

Sample:
<GenericResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Helpers">
  <Data />
  <Message>sample string 2</Message>
  <Success>true</Success>
</GenericResponse>