GET CodeList/{Category}/{CodeId}
Get one entity object
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Category |
Category |
string |
Required |
| CodeId |
CodeId |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ResultCode| Name | Description | Type | Additional information |
|---|---|---|---|
| Category | string |
None. |
|
| CodeId | integer |
None. |
|
| CodeShort | string |
None. |
|
| CodeLong | string |
None. |
|
| SortOrder | string |
None. |
|
| SystemLanguageId | integer |
None. |
|
| Available | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Category": "sample string 1",
"CodeId": 2,
"CodeShort": "sample string 3",
"CodeLong": "sample string 4",
"SortOrder": "sample string 5",
"SystemLanguageId": 6,
"Available": true
}
application/xml, text/xml
Sample:
<ResultCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models"> <Available>true</Available> <Category>sample string 1</Category> <CodeId>2</CodeId> <CodeLong>sample string 4</CodeLong> <CodeShort>sample string 3</CodeShort> <SortOrder>sample string 5</SortOrder> <SystemLanguageId>6</SystemLanguageId> </ResultCode>