GET api/cleanroomapi/cleanroomsbysite/{siteId}?active={active}&lastUpdate={lastUpdate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| siteId | globally unique identifier |
Required |
|
| active | boolean |
None. |
|
| lastUpdate | date |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of CleanRoomViewModel| Name | Description | Type | Additional 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": "a45aa1f4-ba8f-4d67-85a9-0e29a1c14a0d",
"communication_server_id": "605963b3-84f2-473a-8878-3ac73a9659f6",
"id": "34a4ed6c-4679-4a7a-ad21-e2a22fda20a8",
"local_id": 1,
"local_name": "sample string 3",
"name": "sample string 4",
"type_of_temperature": "sample string 5"
},
{
"active": true,
"cleanroom_type_id": "a45aa1f4-ba8f-4d67-85a9-0e29a1c14a0d",
"communication_server_id": "605963b3-84f2-473a-8878-3ac73a9659f6",
"id": "34a4ed6c-4679-4a7a-ad21-e2a22fda20a8",
"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>a45aa1f4-ba8f-4d67-85a9-0e29a1c14a0d</cleanroom_type_id>
<communication_server_id>605963b3-84f2-473a-8878-3ac73a9659f6</communication_server_id>
<id>34a4ed6c-4679-4a7a-ad21-e2a22fda20a8</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>a45aa1f4-ba8f-4d67-85a9-0e29a1c14a0d</cleanroom_type_id>
<communication_server_id>605963b3-84f2-473a-8878-3ac73a9659f6</communication_server_id>
<id>34a4ed6c-4679-4a7a-ad21-e2a22fda20a8</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>