GET v1/options?name={name}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
name | string |
None. |
Body Parameters
None.
Response Information
Resource Description
OptionsResourceName | Description | Type | Additional information |
---|---|---|---|
Options | Collection of OptionDto |
None. |
Response Formats
application/json, text/json
Sample:
{ "options": [ { "id": 1, "name": "sample string 2", "value": "sample string 3" }, { "id": 1, "name": "sample string 2", "value": "sample string 3" } ] }
application/xml, text/xml
Sample:
<Resources xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CablecastAPI.DTOs"> <Options> <Option> <Id>1</Id> <Name>sample string 2</Name> <Value>sample string 3</Value> </Option> <Option> <Id>1</Id> <Name>sample string 2</Name> <Value>sample string 3</Value> </Option> </Options> </Resources>