GET api/configkeyapi/configkeys?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 ConfigKeyViewModel
NameDescriptionTypeAdditional information
default

string

String length: inclusive between 0 and 50

active

boolean

None.

id

globally unique identifier

Required

name

string

Required

String length: inclusive between 0 and 50

source

string

String length: inclusive between 0 and 50

type

globally unique identifier

Required

Response Formats

application/json, text/json

Sample:
[
  {
    "default": "sample string 1",
    "active": true,
    "id": "25563f8c-8402-4fe8-93ba-15eb34578e52",
    "name": "sample string 3",
    "source": "sample string 4",
    "type": "11eb5577-3993-4b5d-867c-b678fe791897"
  },
  {
    "default": "sample string 1",
    "active": true,
    "id": "25563f8c-8402-4fe8-93ba-15eb34578e52",
    "name": "sample string 3",
    "source": "sample string 4",
    "type": "11eb5577-3993-4b5d-867c-b678fe791897"
  }
]

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>
    <default>sample string 1</default>
    <id>25563f8c-8402-4fe8-93ba-15eb34578e52</id>
    <name>sample string 3</name>
    <source>sample string 4</source>
    <type>11eb5577-3993-4b5d-867c-b678fe791897</type>
  </config_type>
  <config_type>
    <active>true</active>
    <default>sample string 1</default>
    <id>25563f8c-8402-4fe8-93ba-15eb34578e52</id>
    <name>sample string 3</name>
    <source>sample string 4</source>
    <type>11eb5577-3993-4b5d-867c-b678fe791897</type>
  </config_type>
</ArrayOfconfig_type>