GET api/Asistencia/GetAllDocumentByDateForCharts?fechaDesde={fechaDesde}&fechaHasta={fechaHasta}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| fechaDesde | string |
Required |
|
| fechaHasta | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Serie| Name | Description | Type | Additional information |
|---|---|---|---|
| name | string |
None. |
|
| data | Collection of Collection of decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"name": "sample string 1",
"data": [
[
1.1,
2.1
],
[
1.1,
2.1
]
]
},
{
"name": "sample string 1",
"data": [
[
1.1,
2.1
],
[
1.1,
2.1
]
]
}
]
application/xml, text/xml
Sample:
<ArrayOfSerie xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MongoDBAPI.Models">
<Serie>
<data xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:ArrayOfdouble>
<d3p1:double>1.1</d3p1:double>
<d3p1:double>2.1</d3p1:double>
</d3p1:ArrayOfdouble>
<d3p1:ArrayOfdouble>
<d3p1:double>1.1</d3p1:double>
<d3p1:double>2.1</d3p1:double>
</d3p1:ArrayOfdouble>
</data>
<name>sample string 1</name>
</Serie>
<Serie>
<data xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:ArrayOfdouble>
<d3p1:double>1.1</d3p1:double>
<d3p1:double>2.1</d3p1:double>
</d3p1:ArrayOfdouble>
<d3p1:ArrayOfdouble>
<d3p1:double>1.1</d3p1:double>
<d3p1:double>2.1</d3p1:double>
</d3p1:ArrayOfdouble>
</data>
<name>sample string 1</name>
</Serie>
</ArrayOfSerie>