GET api/twitchpricing/{tradeinProgramId}/{search}/{insideWidget}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| tradeinProgramId | string |
Required |
|
| search | string |
Required |
|
| insideWidget | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Device| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| variant | integer |
None. |
|
| name | string |
None. |
|
| imageurl | string |
None. |
|
| priceGood | decimal number |
None. |
|
| priceFair | decimal number |
None. |
|
| priceBad | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"variant": 2,
"name": "sample string 3",
"imageurl": "sample string 4",
"priceGood": 5.1,
"priceFair": 6.1,
"priceBad": 7.1
},
{
"id": 1,
"variant": 2,
"name": "sample string 3",
"imageurl": "sample string 4",
"priceGood": 5.1,
"priceFair": 6.1,
"priceBad": 7.1
}
]
application/xml, text/xml
Sample:
<ArrayOfDevice xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Warehouse">
<Device>
<id>1</id>
<imageurl>sample string 4</imageurl>
<name>sample string 3</name>
<priceBad>7.1</priceBad>
<priceFair>6.1</priceFair>
<priceGood>5.1</priceGood>
<variant>2</variant>
</Device>
<Device>
<id>1</id>
<imageurl>sample string 4</imageurl>
<name>sample string 3</name>
<priceBad>7.1</priceBad>
<priceFair>6.1</priceFair>
<priceGood>5.1</priceGood>
<variant>2</variant>
</Device>
</ArrayOfDevice>