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": "5d666e01-0e9b-479e-95e8-712cf9c0da2c",
    "name": "sample string 3",
    "source": "sample string 4",
    "type": "3c656183-f89a-490b-9124-db4744bb19bf"
  },
  {
    "default": "sample string 1",
    "active": true,
    "id": "5d666e01-0e9b-479e-95e8-712cf9c0da2c",
    "name": "sample string 3",
    "source": "sample string 4",
    "type": "3c656183-f89a-490b-9124-db4744bb19bf"
  }
]

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>5d666e01-0e9b-479e-95e8-712cf9c0da2c</id>
    <name>sample string 3</name>
    <source>sample string 4</source>
    <type>3c656183-f89a-490b-9124-db4744bb19bf</type>
  </config_type>
  <config_type>
    <active>true</active>
    <default>sample string 1</default>
    <id>5d666e01-0e9b-479e-95e8-712cf9c0da2c</id>
    <name>sample string 3</name>
    <source>sample string 4</source>
    <type>3c656183-f89a-490b-9124-db4744bb19bf</type>
  </config_type>
</ArrayOfconfig_type>