GET api/SubCenter/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
SubCenter| Name | Description | Type | Additional 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
}
application/xml, text/xml
Sample:
<SubCenter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APMCWebApi.Models"> <Id>3</Id> <IsDeleted>true</IsDeleted> <Description>sample string 2</Description> <SubCenterName>sample string 1</SubCenterName> </SubCenter>