GET api/JDData/ClusterJDModelMapping/{Id}?JDModelId={JDModelId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Id

integer

Default value is 0

JDModelId

integer

Default value is 0

Body Parameters

None.

Response Information

Resource Description

Collection of ClusterJDModelMapping
NameDescriptionTypeAdditional information
ClusterId

integer

None.

ClusterName

string

None.

JDModelId

integer

None.

JDModelName

string

None.

FCDO

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "clusterId": 1,
    "clusterName": "sample string 2",
    "jdModelId": 1,
    "jdModelName": "sample string 3",
    "fcdo": "sample string 4"
  },
  {
    "clusterId": 1,
    "clusterName": "sample string 2",
    "jdModelId": 1,
    "jdModelName": "sample string 3",
    "fcdo": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfClusterJDModelMapping xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Models">
  <ClusterJDModelMapping>
    <ClusterId>1</ClusterId>
    <ClusterName>sample string 2</ClusterName>
    <FCDO>sample string 4</FCDO>
    <JDModelId>1</JDModelId>
    <JDModelName>sample string 3</JDModelName>
  </ClusterJDModelMapping>
  <ClusterJDModelMapping>
    <ClusterId>1</ClusterId>
    <ClusterName>sample string 2</ClusterName>
    <FCDO>sample string 4</FCDO>
    <JDModelId>1</JDModelId>
    <JDModelName>sample string 3</JDModelName>
  </ClusterJDModelMapping>
</ArrayOfClusterJDModelMapping>