GET api/Logs?sender={sender}&funktion={funktion}

Liefert eine Liste (List of logs) aller Log-Einträge pro User und Funktion. Nur für Systemzwecke!

Request Information

URI Parameters

NameDescriptionTypeAdditional information
sender

string

Required

funktion

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Logs
NameDescriptionTypeAdditional information
Beschreibung

string

String length: inclusive between 0 and 2000

Ist_Fehler

boolean

None.

Aend_Dat

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Beschreibung": "sample string 1",
    "Ist_Fehler": true,
    "Aend_Dat": "2025-12-14T20:31:25.9067816+01:00"
  },
  {
    "Beschreibung": "sample string 1",
    "Ist_Fehler": true,
    "Aend_Dat": "2025-12-14T20:31:25.9067816+01:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfLogs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataHubServer.DataHubServer.Models">
  <Logs>
    <Aend_Dat>2025-12-14T20:31:25.9067816+01:00</Aend_Dat>
    <Beschreibung>sample string 1</Beschreibung>
    <Ist_Fehler>true</Ist_Fehler>
  </Logs>
  <Logs>
    <Aend_Dat>2025-12-14T20:31:25.9067816+01:00</Aend_Dat>
    <Beschreibung>sample string 1</Beschreibung>
    <Ist_Fehler>true</Ist_Fehler>
  </Logs>
</ArrayOfLogs>