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": "414fb157-8195-4f62-946a-e950f940b759",
    "name": "sample string 3",
    "source": "sample string 4",
    "type": "bb1b5eb3-b0c3-4511-86af-75adea2c8f68"
  },
  {
    "default": "sample string 1",
    "active": true,
    "id": "414fb157-8195-4f62-946a-e950f940b759",
    "name": "sample string 3",
    "source": "sample string 4",
    "type": "bb1b5eb3-b0c3-4511-86af-75adea2c8f68"
  }
]

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>414fb157-8195-4f62-946a-e950f940b759</id>
    <name>sample string 3</name>
    <source>sample string 4</source>
    <type>bb1b5eb3-b0c3-4511-86af-75adea2c8f68</type>
  </config_type>
  <config_type>
    <active>true</active>
    <default>sample string 1</default>
    <id>414fb157-8195-4f62-946a-e950f940b759</id>
    <name>sample string 3</name>
    <source>sample string 4</source>
    <type>bb1b5eb3-b0c3-4511-86af-75adea2c8f68</type>
  </config_type>
</ArrayOfconfig_type>