GET designs/{designCode}/installs
Retrieves a list of installations associated with a design code.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| designCode |
The design code associated with the product. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
The list of installations associated with the design code.
Collection of DesignInstall| Name | Description | Type | Additional information |
|---|---|---|---|
| InstallId |
The unique identifier for the installation method. |
integer |
None. |
| Name |
Gets or sets the name used to identify the installation. |
string |
None. |
| IsDefault |
Gets or sets a value indicating whether this is the default installation for the design. |
boolean |
None. |
| TileSizes |
Gets or sets a list of tile sizes used by the installation. |
Collection of TileSize |
None. |
Response Formats
application/json, text/json, text/html
Sample:
[
{
"installId": 1,
"name": "sample string 2",
"isDefault": true,
"tileSizes": [
{
"widthInches": 1.0,
"heightInches": 2.0
},
{
"widthInches": 1.0,
"heightInches": 2.0
}
]
},
{
"installId": 1,
"name": "sample string 2",
"isDefault": true,
"tileSizes": [
{
"widthInches": 1.0,
"heightInches": 2.0
},
{
"widthInches": 1.0,
"heightInches": 2.0
}
]
}
]
application/xml, text/xml
Sample:
<ArrayOfDesignInstall xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tricycle.Studio.Api.Catalog.Models">
<DesignInstall>
<InstallId>1</InstallId>
<IsDefault>true</IsDefault>
<Name>sample string 2</Name>
<TileSizes>
<TileSize>
<HeightInches>2</HeightInches>
<WidthInches>1</WidthInches>
</TileSize>
<TileSize>
<HeightInches>2</HeightInches>
<WidthInches>1</WidthInches>
</TileSize>
</TileSizes>
</DesignInstall>
<DesignInstall>
<InstallId>1</InstallId>
<IsDefault>true</IsDefault>
<Name>sample string 2</Name>
<TileSizes>
<TileSize>
<HeightInches>2</HeightInches>
<WidthInches>1</WidthInches>
</TileSize>
<TileSize>
<HeightInches>2</HeightInches>
<WidthInches>1</WidthInches>
</TileSize>
</TileSizes>
</DesignInstall>
</ArrayOfDesignInstall>