GET api/workflow/GetDatasetList?username={username}&AppId={AppId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| username | string |
Required |
|
| AppId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DropDownValue| Name | Description | Type | Additional information |
|---|---|---|---|
| Text | string |
None. |
|
| Value | integer |
None. |
|
| Selected | boolean |
None. |
|
| AppId | integer |
None. |
|
| ModuleId | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Text": "sample string 1",
"Value": 2,
"Selected": true,
"AppId": 1,
"ModuleId": 1
},
{
"Text": "sample string 1",
"Value": 2,
"Selected": true,
"AppId": 1,
"ModuleId": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfDropDownValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IMBS.DO.Models">
<DropDownValue>
<AppId>1</AppId>
<ModuleId>1</ModuleId>
<Selected>true</Selected>
<Text>sample string 1</Text>
<Value>2</Value>
</DropDownValue>
<DropDownValue>
<AppId>1</AppId>
<ModuleId>1</ModuleId>
<Selected>true</Selected>
<Text>sample string 1</Text>
<Value>2</Value>
</DropDownValue>
</ArrayOfDropDownValue>
multipart/form-data
Sample:
<ArrayOfDropDownValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IMBS.DO.Models"><DropDownValue><AppId>1</AppId><ModuleId>1</ModuleId><Selected>true</Selected><Text>sample string 1</Text><Value>2</Value></DropDownValue><DropDownValue><AppId>1</AppId><ModuleId>1</ModuleId><Selected>true</Selected><Text>sample string 1</Text><Value>2</Value></DropDownValue></ArrayOfDropDownValue>