GET api/Dashboard/getReporteIngreso?desde={desde}&hasta={hasta}&status={status}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
desde | date |
Required |
|
hasta | date |
Required |
|
status | string |
Required |
Body Parameters
None.
Response Information
Resource Description
ReporteIngresoResponseName | Description | Type | Additional information |
---|---|---|---|
DR | Collection of SP_getReporteIngreso_Result |
None. |
|
status | integer |
None. |
|
message | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "DR": [ { "FechaCreacion": "2024-11-28T15:29:09.5184901-05:00", "FechaIngreso": "2024-11-28T15:29:09.5184901-05:00", "Empresa": "sample string 1", "Status": "sample string 2" }, { "FechaCreacion": "2024-11-28T15:29:09.5184901-05:00", "FechaIngreso": "2024-11-28T15:29:09.5184901-05:00", "Empresa": "sample string 1", "Status": "sample string 2" } ], "status": 1, "message": "sample string 2" }
application/xml, text/xml
Sample:
<ReporteIngresoResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EXPU_Backend.Models"> <message>sample string 2</message> <status>1</status> <DR xmlns:d2p1="http://schemas.datacontract.org/2004/07/EXPU_Backend"> <d2p1:SP_getReporteIngreso_Result> <d2p1:Empresa>sample string 1</d2p1:Empresa> <d2p1:FechaCreacion>2024-11-28T15:29:09.5184901-05:00</d2p1:FechaCreacion> <d2p1:FechaIngreso>2024-11-28T15:29:09.5184901-05:00</d2p1:FechaIngreso> <d2p1:Status>sample string 2</d2p1:Status> </d2p1:SP_getReporteIngreso_Result> <d2p1:SP_getReporteIngreso_Result> <d2p1:Empresa>sample string 1</d2p1:Empresa> <d2p1:FechaCreacion>2024-11-28T15:29:09.5184901-05:00</d2p1:FechaCreacion> <d2p1:FechaIngreso>2024-11-28T15:29:09.5184901-05:00</d2p1:FechaIngreso> <d2p1:Status>sample string 2</d2p1:Status> </d2p1:SP_getReporteIngreso_Result> </DR> </ReporteIngresoResponse>