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": "90d79a43-eb43-442e-9775-3a78533c6c11",
    "name": "sample string 3",
    "source": "sample string 4",
    "type": "56346ae6-01c8-4d2f-914a-be4381d1f6dc"
  },
  {
    "default": "sample string 1",
    "active": true,
    "id": "90d79a43-eb43-442e-9775-3a78533c6c11",
    "name": "sample string 3",
    "source": "sample string 4",
    "type": "56346ae6-01c8-4d2f-914a-be4381d1f6dc"
  }
]

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>90d79a43-eb43-442e-9775-3a78533c6c11</id>
    <name>sample string 3</name>
    <source>sample string 4</source>
    <type>56346ae6-01c8-4d2f-914a-be4381d1f6dc</type>
  </config_type>
  <config_type>
    <active>true</active>
    <default>sample string 1</default>
    <id>90d79a43-eb43-442e-9775-3a78533c6c11</id>
    <name>sample string 3</name>
    <source>sample string 4</source>
    <type>56346ae6-01c8-4d2f-914a-be4381d1f6dc</type>
  </config_type>
</ArrayOfconfig_type>