GET api/statistics/getcasesbystate
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of CaseByStateViewModelName | Description | Type | Additional information |
---|---|---|---|
Estado | string |
None. |
|
TotalCasosRecurrridos | integer |
None. |
|
TotalCasosIniciadores | integer |
None. |
|
Total | integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Estado": "sample string 1", "TotalCasosRecurrridos": 2, "TotalCasosIniciadores": 3, "Total": 4 }, { "Estado": "sample string 1", "TotalCasosRecurrridos": 2, "TotalCasosIniciadores": 3, "Total": 4 } ]
application/xml, text/xml
Sample:
<ArrayOfCaseByStateViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/asume.api.data.ViewModels"> <CaseByStateViewModel> <Estado>sample string 1</Estado> <Total>4</Total> <TotalCasosIniciadores>3</TotalCasosIniciadores> <TotalCasosRecurrridos>2</TotalCasosRecurrridos> </CaseByStateViewModel> <CaseByStateViewModel> <Estado>sample string 1</Estado> <Total>4</Total> <TotalCasosIniciadores>3</TotalCasosIniciadores> <TotalCasosRecurrridos>2</TotalCasosRecurrridos> </CaseByStateViewModel> </ArrayOfCaseByStateViewModel>