GET api/Category/{id}/FSC
Get the FSCs that belong to a Category.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Category Id. ex) 12 |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of FSC| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | string |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"code": "sample string 1",
"description": "sample string 2"
},
{
"code": "sample string 1",
"description": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfFSC xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ISOWebAPI.Models">
<FSC>
<Code>sample string 1</Code>
<Description>sample string 2</Description>
</FSC>
<FSC>
<Code>sample string 1</Code>
<Description>sample string 2</Description>
</FSC>
</ArrayOfFSC>