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": "a9f19017-ae30-4fd3-adf1-2b2f1a174736",
    "name": "sample string 3",
    "source": "sample string 4",
    "type": "ba3b0e22-2bf5-449c-9aad-2187909bff28"
  },
  {
    "default": "sample string 1",
    "active": true,
    "id": "a9f19017-ae30-4fd3-adf1-2b2f1a174736",
    "name": "sample string 3",
    "source": "sample string 4",
    "type": "ba3b0e22-2bf5-449c-9aad-2187909bff28"
  }
]

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>a9f19017-ae30-4fd3-adf1-2b2f1a174736</id>
    <name>sample string 3</name>
    <source>sample string 4</source>
    <type>ba3b0e22-2bf5-449c-9aad-2187909bff28</type>
  </config_type>
  <config_type>
    <active>true</active>
    <default>sample string 1</default>
    <id>a9f19017-ae30-4fd3-adf1-2b2f1a174736</id>
    <name>sample string 3</name>
    <source>sample string 4</source>
    <type>ba3b0e22-2bf5-449c-9aad-2187909bff28</type>
  </config_type>
</ArrayOfconfig_type>