GET SinCtrl/{SIM_ID}/SimulationPieceMinGet

Request Information

URI Parameters

NameDescriptionTypeAdditional information
SIM_ID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of PieceMin
NameDescriptionTypeAdditional information
id

decimal number

None.

label

string

None.

type

integer

None.

count

integer

None.

surface

decimal number

None.

doIsolation

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1.0,
    "label": "sample string 2",
    "type": 1,
    "count": 1,
    "surface": 1.0,
    "doIsolation": true
  },
  {
    "id": 1.0,
    "label": "sample string 2",
    "type": 1,
    "count": 1,
    "surface": 1.0,
    "doIsolation": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfPieceMin xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Models">
  <PieceMin>
    <count>1</count>
    <doIsolation>true</doIsolation>
    <id>1</id>
    <label>sample string 2</label>
    <surface>1</surface>
    <type>1</type>
  </PieceMin>
  <PieceMin>
    <count>1</count>
    <doIsolation>true</doIsolation>
    <id>1</id>
    <label>sample string 2</label>
    <surface>1</surface>
    <type>1</type>
  </PieceMin>
</ArrayOfPieceMin>