GET api/SubCenter

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of SubCenter
NameDescriptionTypeAdditional information
SubCenterName

string

None.

Description

string

None.

Id

integer

None.

IsDeleted

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SubCenterName": "sample string 1",
    "Description": "sample string 2",
    "Id": 3,
    "IsDeleted": true
  },
  {
    "SubCenterName": "sample string 1",
    "Description": "sample string 2",
    "Id": 3,
    "IsDeleted": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfSubCenter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APMCWebApi.Models">
  <SubCenter>
    <Id>3</Id>
    <IsDeleted>true</IsDeleted>
    <Description>sample string 2</Description>
    <SubCenterName>sample string 1</SubCenterName>
  </SubCenter>
  <SubCenter>
    <Id>3</Id>
    <IsDeleted>true</IsDeleted>
    <Description>sample string 2</Description>
    <SubCenterName>sample string 1</SubCenterName>
  </SubCenter>
</ArrayOfSubCenter>