GET api/Cases/CasesPerStore

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of cases_per_store
NameDescriptionTypeAdditional information
Id_Store

integer

None.

Name

string

None.

Shortname

string

None.

Count

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id_Store": 1,
    "Name": "sample string 2",
    "Shortname": "sample string 3",
    "Count": 1
  },
  {
    "Id_Store": 1,
    "Name": "sample string 2",
    "Shortname": "sample string 3",
    "Count": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfcases_per_store xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Prevention_Api.Models">
  <cases_per_store>
    <Count>1</Count>
    <Id_Store>1</Id_Store>
    <Name>sample string 2</Name>
    <Shortname>sample string 3</Shortname>
  </cases_per_store>
  <cases_per_store>
    <Count>1</Count>
    <Id_Store>1</Id_Store>
    <Name>sample string 2</Name>
    <Shortname>sample string 3</Shortname>
  </cases_per_store>
</ArrayOfcases_per_store>