POST api/Log

Retrieves Informations about API-Requests in the history. If not time period is given, all stored requests are returned.

Request Information

URI Parameters

None.

Body Parameters

LogRequestModel
NameDescriptionTypeAdditional information
Start

The start of the time period

date

None.

End

The end of the time period

date

None.

Items

The number of items which are returned, or infinite, if not given

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Start": "2026-01-28T19:29:29.2395502+01:00",
  "End": "2026-01-28T19:29:29.2395502+01:00",
  "Items": 1
}

application/xml, text/xml

Sample:
<LogRequestModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Start>2026-01-28T19:29:29.2395502+01:00</Start>
  <End>2026-01-28T19:29:29.2395502+01:00</End>
  <Items>1</Items>
</LogRequestModel>

Response Information

Resource Description

Collection of CommunicationLogData
NameDescriptionTypeAdditional information
RequestBody

Request Body String

string

None.

RequestMethod

Request Method

HttpMethod

None.

RequestUri

Request Uri

string

None.

ResponseBody

Response Body String

string

None.

Timestamp

The Timestamp of the Operation

date

None.

ResponseStatusCode

Response Statuscode

HttpStatusCode

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "RequestBody": "sample string 1",
    "RequestMethod": null,
    "RequestUri": "sample string 2",
    "ResponseBody": "sample string 3",
    "Timestamp": "2026-01-28T19:29:29.2551784+01:00",
    "ResponseStatusCode": 100
  },
  {
    "RequestBody": "sample string 1",
    "RequestMethod": null,
    "RequestUri": "sample string 2",
    "ResponseBody": "sample string 3",
    "Timestamp": "2026-01-28T19:29:29.2551784+01:00",
    "ResponseStatusCode": 100
  }
]