View Calendar Exceptions

get

/api/restapi/calendar/exception/{calendarId}

This endpoint returns calendar exceptions that meet the following requirements:
  • The object is associated with a calendar with an ID value that matches the value of the {calendarId} path parameter.
Calendars define the workdays, work hours, holidays, and exceptions available to projects, resources, and roles.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : List<ApiEntityCalendarException>
Type: array
Title: List<ApiEntityCalendarException>
Show Source
Nested Schema : ApiEntityCalendarException
Type: object
Title: ApiEntityCalendarException
Show Source
  • Minimum Length: 0
    Maximum Length: 255
    The unique code for the calendar.
  • The unique identifier for the calendar exception.
  • The unique identifier for the calendar.
  • The date that is marked as an exception. An exception is a change to the regularly scheduled time in the calendar.
  • Maximum Length: 60
    The name of the exception for the calendar.
  • Date when the record was last updated.
  • Minimum Length: 0
    Maximum Length: 60
    The user-specified identifier of a workspace.
  • Maximum Length: 4000
    Work time that is non-standard.
    The value is a 48 character string, which can either be 0 to indicate non-work time or 1 to indicate work time. Each character in this 48 character string corresponds to a 30 minute slot available in a day. Two slots per hour multiplied by 24 hours equals 48 characters.
    For example, the 1's in the following string indicate that work time for the day is 9 AM to 5 PM.
    000000000000000000111111111111111100000000000000

204 Response

Successful operation with no content.

404 Response

The requested calendar exception does not exist, or you do not have access to it.
Back to Top