Description
API call returns code table values
Request Parameters
| # |
Name |
Type |
Required |
Example |
Description |
| 1 |
Id |
integer |
0 |
123 |
Code value Id |
| 2 |
RowCount |
integer |
0 |
123 |
Number of rows to return |
| 3 |
LanguageId |
integer |
0 |
123 |
Selected language for CodeDescription value |
Request body
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:dem="https://api.pixi.eu/soap/demosandbox/">
<soapenv:Header/>
<soapenv:Body>
<dem:pixiReadCodeTableValues>
<dem:Id>123</dem:Id>
<dem:RowCount>123</dem:RowCount>
<dem:LanguageId>123</dem:LanguageId>
</dem:pixiReadCodeTableValues>
</soapenv:Body>
</soapenv:Envelope>
Response
Body 1: Code table information
| # |
Name |
Type |
Description |
| 1 |
Id |
integer |
Code table Id |
| 2 |
CodeTableTypeId |
integer |
Code table type Id |
| 3 |
Code |
string |
Code value |
| 4 |
CodeDescription |
string |
Code description in selected language |
| 5 |
IsEnabled |
boolean |
The code is enabled for display in UI |
| 6 |
IsSystem |
boolean |
Notes if the record is system and thus can not be changed |
| 7 |
SortOrder |
integer |
Order of column for display in UI (smaller is displayed first) |
| 8 |
IsDefault |
boolean |
Code is preselected as default value in UI |
Additional Notes