GET api/CalendarKeys/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Remarks

None.

Example

None.

Response Information

Resource Description

GetCalendarKeyResponse
NameDescriptionTypeAdditional information
Key

Key

string

None.

AuthorizationLevel

Authorization level

string

None.

CalendarId

Calendar id

integer

None.

ChangedDateTime

Changed date time

date

None.

ChangedBy

Changed by

string

None.

CreatedDateTime

Created date time

date

None.

CreatedBy

Created by

string

None.

DeletedDateTime

Deleted date time, is null if key is not deleted

date

None.

DeletedBy

Deleted by, is null if key is not deleted

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Key": "sample string 1",
  "AuthorizationLevel": "sample string 2",
  "CalendarId": 3,
  "ChangedDateTime": "2025-12-20T22:08:16.2226889+00:00",
  "ChangedBy": "sample string 5",
  "CreatedDateTime": "2025-12-20T22:08:16.2226889+00:00",
  "CreatedBy": "sample string 7",
  "DeletedDateTime": "2025-12-20T22:08:16.2226889+00:00",
  "DeletedBy": "sample string 8"
}

application/xml, text/xml

Sample:
<GetCalendarKeyResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.Calendar.Service.DTO">
  <AuthorizationLevel>sample string 2</AuthorizationLevel>
  <CalendarId>3</CalendarId>
  <ChangedBy>sample string 5</ChangedBy>
  <ChangedDateTime xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-12-20T22:08:16.2226889Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </ChangedDateTime>
  <CreatedBy>sample string 7</CreatedBy>
  <CreatedDateTime xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-12-20T22:08:16.2226889Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </CreatedDateTime>
  <DeletedBy>sample string 8</DeletedBy>
  <DeletedDateTime xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-12-20T22:08:16.2226889Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </DeletedDateTime>
  <Key>sample string 1</Key>
</GetCalendarKeyResponse>