Retrieves the company calendar type with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The company calendar type id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the company calendar type, or 404 Not Found if it doesn't exist.

company_calendar_type
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

Name of this calendar entry type.

string
is_unavailable

Indicates that entries of this type mark the company as unavailable (e.g. closed) during their date range.

boolean
sales_organization_id

FK of sales_organization. Filled if specific of one SO, empty if can be used by all.

globally unique identifier
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "34a747c9-72d5-4bdf-b135-58a9d27ff3b7",
  "name": "sample string 2",
  "is_unavailable": true,
  "sales_organization_id": "c4f11586-66c4-4933-903d-60b1d40cb24c",
  "modified_dateutc": "2026-09-16T09:24:54.5996239+00:00"
}

application/xml, text/xml

Sample:
<company_calendar_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <id>34a747c9-72d5-4bdf-b135-58a9d27ff3b7</id>
  <is_unavailable>true</is_unavailable>
  <modified_dateutc>2026-09-16T09:24:54.599Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>c4f11586-66c4-4933-903d-60b1d40cb24c</sales_organization_id>
</company_calendar_type>