GET api/lists/Lists/GetLeadSourceCategories
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
WebMethodResultOfListOfListItemOfInt32AndString| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | Collection of ListItemOfInt32AndString |
None. |
|
| Success | boolean |
None. |
|
| ErrorText | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": [
{
"ID": 1,
"Name": "sample string 2"
},
{
"ID": 1,
"Name": "sample string 2"
}
],
"Success": true,
"ErrorText": "sample string 2"
}
application/javascript
Sample:
{"Result":[{"ID":1,"Name":"sample string 2"},{"ID":1,"Name":"sample string 2"}],"Success":true,"ErrorText":"sample string 2"}
application/xml, text/xml
Sample:
<WebMethodResultOfListOfListItemOfInt32String xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Success>true</Success>
<ErrorText>sample string 2</ErrorText>
<Result>
<ListItemOfInt32String>
<ID>1</ID>
<Name>sample string 2</Name>
</ListItemOfInt32String>
<ListItemOfInt32String>
<ID>1</ID>
<Name>sample string 2</Name>
</ListItemOfInt32String>
</Result>
</WebMethodResultOfListOfListItemOfInt32String>