Retrieves the company calendar entry with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The company calendar entry id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the company calendar entry, or 404 Not Found if it doesn't exist.
company_calendar| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| company_id |
Foreign key of the company this calendar entry belongs to. |
globally unique identifier | |
| company_calendar_type_id |
Foreign key of the type of calendar entry (e.g. closure, special hours). |
globally unique identifier | |
| date_start |
Date and time this calendar entry starts. |
date | |
| date_end |
Date and time this calendar entry ends. |
date | |
| description |
Free-text description of this calendar entry. |
string | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "0085eb75-6e4e-4ef8-b63c-88a103aece41",
"company_id": "6fa8754a-1e59-4df2-be1d-74b1a16d3391",
"company_calendar_type_id": "e96fcb0f-ad13-42eb-b0a2-a9df73071214",
"date_start": "2026-09-16T10:17:15.3423881+00:00",
"date_end": "2026-09-16T10:17:15.3423881+00:00",
"description": "sample string 6",
"modified_dateutc": "2026-09-16T10:17:15.3423881+00:00"
}
application/xml, text/xml
Sample:
<company_calendar xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <company_calendar_type_id>e96fcb0f-ad13-42eb-b0a2-a9df73071214</company_calendar_type_id> <company_id>6fa8754a-1e59-4df2-be1d-74b1a16d3391</company_id> <date_end>2026-09-16T10:17:15.342Z</date_end> <date_start>2026-09-16T10:17:15.342Z</date_start> <description>sample string 6</description> <id>0085eb75-6e4e-4ef8-b63c-88a103aece41</id> <modified_dateutc>2026-09-16T10:17:15.342Z</modified_dateutc> </company_calendar>