GET api/cleanroomapi/cleanrooms?active={active}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
active

boolean

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CleanRoomViewModel
NameDescriptionTypeAdditional information
active

boolean

Required

cleanroom_type_id

globally unique identifier

Required

communication_server_id

globally unique identifier

Required

id

globally unique identifier

None.

local_id

integer

Range: inclusive between 0 and ∞

local_name

string

None.

name

string

Required

type_of_temperature

string

Required

Response Formats

application/json, text/json

Sample:
[
  {
    "active": true,
    "cleanroom_type_id": "a6a5a0ef-0df3-4afe-a4a3-ac2a5220f5ec",
    "communication_server_id": "0969981a-d112-4f52-86e1-8890adbcbe1c",
    "id": "7a735e37-3858-43eb-ae1e-d484e7c8d8d3",
    "local_id": 1,
    "local_name": "sample string 3",
    "name": "sample string 4",
    "type_of_temperature": "sample string 5"
  },
  {
    "active": true,
    "cleanroom_type_id": "a6a5a0ef-0df3-4afe-a4a3-ac2a5220f5ec",
    "communication_server_id": "0969981a-d112-4f52-86e1-8890adbcbe1c",
    "id": "7a735e37-3858-43eb-ae1e-d484e7c8d8d3",
    "local_id": 1,
    "local_name": "sample string 3",
    "name": "sample string 4",
    "type_of_temperature": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfcleanroom xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
  <cleanroom>
    <active>true</active>
    <cleanroom_type_id>a6a5a0ef-0df3-4afe-a4a3-ac2a5220f5ec</cleanroom_type_id>
    <communication_server_id>0969981a-d112-4f52-86e1-8890adbcbe1c</communication_server_id>
    <id>7a735e37-3858-43eb-ae1e-d484e7c8d8d3</id>
    <local_id>1</local_id>
    <local_name>sample string 3</local_name>
    <name>sample string 4</name>
    <type_of_temperature>sample string 5</type_of_temperature>
  </cleanroom>
  <cleanroom>
    <active>true</active>
    <cleanroom_type_id>a6a5a0ef-0df3-4afe-a4a3-ac2a5220f5ec</cleanroom_type_id>
    <communication_server_id>0969981a-d112-4f52-86e1-8890adbcbe1c</communication_server_id>
    <id>7a735e37-3858-43eb-ae1e-d484e7c8d8d3</id>
    <local_id>1</local_id>
    <local_name>sample string 3</local_name>
    <name>sample string 4</name>
    <type_of_temperature>sample string 5</type_of_temperature>
  </cleanroom>
</ArrayOfcleanroom>