GET api/configtypeapi/configtypes?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 ConfigTypeViewModel
NameDescriptionTypeAdditional information
active

boolean

None.

code

integer

Required

id

globally unique identifier

Required

name

string

Required

String length: inclusive between 0 and 50

Response Formats

application/json, text/json

Sample:
[
  {
    "active": true,
    "code": 1,
    "id": "03ec3c2a-5942-46b1-afdc-3d1d92e75d8b",
    "name": "sample string 2"
  },
  {
    "active": true,
    "code": 1,
    "id": "03ec3c2a-5942-46b1-afdc-3d1d92e75d8b",
    "name": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfconfig_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
  <config_type>
    <active>true</active>
    <code>1</code>
    <id>03ec3c2a-5942-46b1-afdc-3d1d92e75d8b</id>
    <name>sample string 2</name>
  </config_type>
  <config_type>
    <active>true</active>
    <code>1</code>
    <id>03ec3c2a-5942-46b1-afdc-3d1d92e75d8b</id>
    <name>sample string 2</name>
  </config_type>
</ArrayOfconfig_type>