GET api/configtypeapi/configtypes?active={active}&lastUpdate={lastUpdate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| active | boolean |
None. |
|
| lastUpdate | date |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of ConfigTypeViewModel| Name | Description | Type | Additional 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": "89f8451c-368c-4a8c-a384-1b054f5b35fc",
"name": "sample string 2"
},
{
"active": true,
"code": 1,
"id": "89f8451c-368c-4a8c-a384-1b054f5b35fc",
"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>89f8451c-368c-4a8c-a384-1b054f5b35fc</id>
<name>sample string 2</name>
</config_type>
<config_type>
<active>true</active>
<code>1</code>
<id>89f8451c-368c-4a8c-a384-1b054f5b35fc</id>
<name>sample string 2</name>
</config_type>
</ArrayOfconfig_type>