GET api/Base?entityName={entityName}&cellId={cellId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
entityName | string |
Required |
|
cellId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of OptionName | Description | Type | Additional information |
---|---|---|---|
Value | string |
None. |
|
Code | string |
None. |
|
Text | string |
None. |
|
Selected | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Value": "sample string 1", "Code": "sample string 2", "Text": "sample string 3", "Selected": true }, { "Value": "sample string 1", "Code": "sample string 2", "Text": "sample string 3", "Selected": true } ]
application/xml, text/xml
Sample:
<ArrayOfOption xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FoodExport.Web.Services.Models"> <Option> <Code>sample string 2</Code> <Selected>true</Selected> <Text>sample string 3</Text> <Value>sample string 1</Value> </Option> <Option> <Code>sample string 2</Code> <Selected>true</Selected> <Text>sample string 3</Text> <Value>sample string 1</Value> </Option> </ArrayOfOption>