GET api/Configs

Retrieves all config entries.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

All email events with the related body texts.

Collection of Config
NameDescriptionTypeAdditional information
Id

integer

None.

Setting

string

None.

Value

string

None.

Category

string

None.

ErstellDat

date

None.

ErstellUs

string

None.

AendDat

date

None.

AendUs

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Setting": "sample string 2",
    "Value": "sample string 3",
    "Category": "sample string 4",
    "ErstellDat": "2026-04-07T13:21:38.6398349+02:00",
    "ErstellUs": "sample string 5",
    "AendDat": "2026-04-07T13:21:38.6408365+02:00",
    "AendUs": "sample string 6"
  },
  {
    "Id": 1,
    "Setting": "sample string 2",
    "Value": "sample string 3",
    "Category": "sample string 4",
    "ErstellDat": "2026-04-07T13:21:38.6398349+02:00",
    "ErstellUs": "sample string 5",
    "AendDat": "2026-04-07T13:21:38.6408365+02:00",
    "AendUs": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfConfig xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BestaendeWeb.Models">
  <Config>
    <AendDat>2026-04-07T13:21:38.6408365+02:00</AendDat>
    <AendUs>sample string 6</AendUs>
    <Category>sample string 4</Category>
    <ErstellDat>2026-04-07T13:21:38.6398349+02:00</ErstellDat>
    <ErstellUs>sample string 5</ErstellUs>
    <Id>1</Id>
    <Setting>sample string 2</Setting>
    <Value>sample string 3</Value>
  </Config>
  <Config>
    <AendDat>2026-04-07T13:21:38.6408365+02:00</AendDat>
    <AendUs>sample string 6</AendUs>
    <Category>sample string 4</Category>
    <ErstellDat>2026-04-07T13:21:38.6398349+02:00</ErstellDat>
    <ErstellUs>sample string 5</ErstellUs>
    <Id>1</Id>
    <Setting>sample string 2</Setting>
    <Value>sample string 3</Value>
  </Config>
</ArrayOfConfig>