GET api/Assets/GetSeamDeptList?UserID={UserID}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
UserID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ResponseOfAssetsDeptModelName | Description | Type | Additional information |
---|---|---|---|
Success | boolean |
None. |
|
Message | string |
None. |
|
ResultList | Collection of AssetsDeptModel |
None. |
|
Result | AssetsDeptModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "Success": true, "Message": "sample string 2", "ResultList": [ { "title": "sample string 1", "value": 2 }, { "title": "sample string 1", "value": 2 } ], "Result": { "title": "sample string 1", "value": 2 } }
application/xml, text/xml
Sample:
<ResponseOfAssetsDeptModelYmRXLYhv xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StrongWebAPI"> <Message>sample string 2</Message> <Result> <title>sample string 1</title> <value>2</value> </Result> <ResultList> <AssetsDeptModel> <title>sample string 1</title> <value>2</value> </AssetsDeptModel> <AssetsDeptModel> <title>sample string 1</title> <value>2</value> </AssetsDeptModel> </ResultList> <Success>true</Success> </ResponseOfAssetsDeptModelYmRXLYhv>