GET api/cleanroomtypeapi/cleanroomtypes?active={active}&lastUpdate={lastUpdate}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
active

boolean

None.

lastUpdate

date

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CleanroomTypeViewModel
NameDescriptionTypeAdditional information
active

boolean

None.

code

integer

None.

id

globally unique identifier

None.

name

string

Required

String length: inclusive between 0 and 30

Response Formats

application/json, text/json

Sample:
[
  {
    "active": true,
    "code": 1,
    "id": "1aff39b7-5cb5-49d4-9014-d5da2a7992ff",
    "name": "sample string 3"
  },
  {
    "active": true,
    "code": 1,
    "id": "1aff39b7-5cb5-49d4-9014-d5da2a7992ff",
    "name": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfcleanroom_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
  <cleanroom_type>
    <active>true</active>
    <code>1</code>
    <id>1aff39b7-5cb5-49d4-9014-d5da2a7992ff</id>
    <name>sample string 3</name>
  </cleanroom_type>
  <cleanroom_type>
    <active>true</active>
    <code>1</code>
    <id>1aff39b7-5cb5-49d4-9014-d5da2a7992ff</id>
    <name>sample string 3</name>
  </cleanroom_type>
</ArrayOfcleanroom_type>