POST api/graphic/GetGraphicData?token={token}&initial={initial}&final={final}&searchPeriod={searchPeriod}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
Required |
|
| initial | date |
Required |
|
| final | date |
Required |
|
| searchPeriod | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of GraphicModel| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalPagesPb | integer |
None. |
|
| TotalPagesColor | integer |
None. |
|
| Date | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"TotalPagesPb": 1,
"TotalPagesColor": 2,
"Date": "2025-12-13T11:12:46.35836-03:00"
},
{
"TotalPagesPb": 1,
"TotalPagesColor": 2,
"Date": "2025-12-13T11:12:46.35836-03:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfGraphicModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Models">
<GraphicModel>
<Date>2025-12-13T11:12:46.35836-03:00</Date>
<TotalPagesColor>2</TotalPagesColor>
<TotalPagesPb>1</TotalPagesPb>
</GraphicModel>
<GraphicModel>
<Date>2025-12-13T11:12:46.35836-03:00</Date>
<TotalPagesColor>2</TotalPagesColor>
<TotalPagesPb>1</TotalPagesPb>
</GraphicModel>
</ArrayOfGraphicModel>