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