Skip to content

Get Effective Hours Of Operations

connect_get_effective_hours_of_operations R Documentation

Get the hours of operations with the effective override applied

Description

Get the hours of operations with the effective override applied.

Usage

connect_get_effective_hours_of_operations(InstanceId,
  HoursOfOperationId, FromDate, ToDate)

Arguments

InstanceId

[required] The identifier of the Connect Customer instance.

HoursOfOperationId

[required] The identifier for the hours of operation.

FromDate

[required] The date from when the hours of operation are listed.

ToDate

[required] The date until when the hours of operation are listed.

Value

A list with the following syntax:

list(
  EffectiveHoursOfOperationList = list(
    list(
      Date = "string",
      OperationalHours = list(
        list(
          Start = list(
            Hours = 123,
            Minutes = 123
          ),
          End = list(
            Hours = 123,
            Minutes = 123
          )
        )
      )
    )
  ),
  EffectiveOverrideHoursList = list(
    list(
      Date = "string",
      OverrideHours = list(
        list(
          Start = list(
            Hours = 123,
            Minutes = 123
          ),
          End = list(
            Hours = 123,
            Minutes = 123
          ),
          OverrideName = "string",
          OperationalStatus = "OPEN"|"CLOSED"
        )
      )
    )
  ),
  TimeZone = "string"
)

Request syntax

svc$get_effective_hours_of_operations(
  InstanceId = "string",
  HoursOfOperationId = "string",
  FromDate = "string",
  ToDate = "string"
)