Retrieves all company calendar entries, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of company calendar entries.
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": "03416b6a-e42e-41ed-bc31-9a496fadc98a",
"company_id": "74e905b0-f856-45e9-be15-3cf666c6c6c4",
"company_calendar_type_id": "ac8e3ee8-e104-4e46-8d73-c397b1e76a28",
"date_start": "2026-09-16T11:04:30.5758636+00:00",
"date_end": "2026-09-16T11:04:30.5758636+00:00",
"description": "sample string 6",
"modified_dateutc": "2026-09-16T11:04:30.5758636+00:00"
}
application/xml, text/xml
Sample:
<company_calendar xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <company_calendar_type_id>ac8e3ee8-e104-4e46-8d73-c397b1e76a28</company_calendar_type_id> <company_id>74e905b0-f856-45e9-be15-3cf666c6c6c4</company_id> <date_end>2026-09-16T11:04:30.575Z</date_end> <date_start>2026-09-16T11:04:30.575Z</date_start> <description>sample string 6</description> <id>03416b6a-e42e-41ed-bc31-9a496fadc98a</id> <modified_dateutc>2026-09-16T11:04:30.575Z</modified_dateutc> </company_calendar>