GET api/cleanroomapi/cleanroomsbycustomer/{customerId}?active={active}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
customerId

globally unique identifier

Required

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": "6489686b-d7fe-4087-864b-6ecd57afc1a9",
    "communication_server_id": "966d6994-a860-47d2-b3eb-e1c66168d3d2",
    "id": "d625179b-e1e8-4dfb-afa2-c6ca4e51847d",
    "local_id": 1,
    "local_name": "sample string 3",
    "name": "sample string 4",
    "type_of_temperature": "sample string 5"
  },
  {
    "active": true,
    "cleanroom_type_id": "6489686b-d7fe-4087-864b-6ecd57afc1a9",
    "communication_server_id": "966d6994-a860-47d2-b3eb-e1c66168d3d2",
    "id": "d625179b-e1e8-4dfb-afa2-c6ca4e51847d",
    "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>6489686b-d7fe-4087-864b-6ecd57afc1a9</cleanroom_type_id>
    <communication_server_id>966d6994-a860-47d2-b3eb-e1c66168d3d2</communication_server_id>
    <id>d625179b-e1e8-4dfb-afa2-c6ca4e51847d</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>6489686b-d7fe-4087-864b-6ecd57afc1a9</cleanroom_type_id>
    <communication_server_id>966d6994-a860-47d2-b3eb-e1c66168d3d2</communication_server_id>
    <id>d625179b-e1e8-4dfb-afa2-c6ca4e51847d</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>