GET GetSwapModelMap/{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 SwapModelMap| Name | Description | Type | Additional information |
|---|---|---|---|
| ParameterId | integer |
None. |
|
| OptionId | integer |
None. |
|
| ModelName | string |
None. |
|
| RelatesTo | string |
None. |
|
| IsDefault | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ParameterId": 1,
"OptionId": 2,
"ModelName": "sample string 3",
"RelatesTo": "sample string 4",
"IsDefault": true
},
{
"ParameterId": 1,
"OptionId": 2,
"ModelName": "sample string 3",
"RelatesTo": "sample string 4",
"IsDefault": true
}
]
application/xml, text/xml
Sample:
<ArrayOfSwapModelMap xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Models">
<SwapModelMap>
<IsDefault>true</IsDefault>
<ModelName>sample string 3</ModelName>
<OptionId>2</OptionId>
<ParameterId>1</ParameterId>
<RelatesTo>sample string 4</RelatesTo>
</SwapModelMap>
<SwapModelMap>
<IsDefault>true</IsDefault>
<ModelName>sample string 3</ModelName>
<OptionId>2</OptionId>
<ParameterId>1</ParameterId>
<RelatesTo>sample string 4</RelatesTo>
</SwapModelMap>
</ArrayOfSwapModelMap>