GET GetColorSwap/{domainName}/{partId}
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| domainName | string | Required | |
| partId | string | Required | 
Body Parameters
None.
Response Information
Resource Description
Collection of ColorSwap| Name | Description | Type | Additional information | 
|---|---|---|---|
| Id | integer | None. | |
| ModelId | integer | None. | |
| ParameterId | integer | None. | |
| PartName | string | None. | 
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "Id": 1,
    "ModelId": 2,
    "ParameterId": 3,
    "PartName": "sample string 4"
  },
  {
    "Id": 1,
    "ModelId": 2,
    "ParameterId": 3,
    "PartName": "sample string 4"
  }
]
        application/xml, text/xml
            Sample:
<ArrayOfColorSwap xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Models">
  <ColorSwap>
    <Id>1</Id>
    <ModelId>2</ModelId>
    <ParameterId>3</ParameterId>
    <PartName>sample string 4</PartName>
  </ColorSwap>
  <ColorSwap>
    <Id>1</Id>
    <ModelId>2</ModelId>
    <ParameterId>3</ParameterId>
    <PartName>sample string 4</PartName>
  </ColorSwap>
</ArrayOfColorSwap>