GET api/fmi/{tradeinProgramId}/{productId}/{variant}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| tradeinProgramId | string |
Required |
|
| productId | string |
Required |
|
| variant | string |
Required |
Body Parameters
None.
Response Information
Resource Description
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
}
application/xml, text/xml
Sample:
<Device xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Warehouse"> <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>