Scheduling Framework

Get Scheduling Framework v2.0

GET https://yoursite.demanddriventech.com/odata/v2/schedulingframework

{
    "@odata.context": "https://yoursite.demanddriventech.com/odata/v2/$metadata#schedulingframework",
    "value": [
        {
            "DataSetId": 138,
            "Id": 7119,
            "SchedulingSetId": 39,
            "ResourceId": 138,
            "Resource": "R1",
            "Date": "2020-07-10T00:00:00-07:00",
            "Year": 2020,
            "WeekNumber": 27,
            "AvailableCapacity": 480,
            "BeginningOfDay": "2021-08-24T08:00:00Z",
            "EndOfDay": "2021-08-24T16:00:00Z"
        }
    ]
}

Scheduling Framework Fields

Field Name

Type

Notes

DataSetId

int

Id

int

SchedulingSetId

int

ResourceId

int

Resource

text

Date

date

The date of the available capacity

Year

int

The year of the date

WeekNumber

int

The week number of the date

AvailableCapacity

int

Duration in minutes

BeginningOfDay

DateTime?

The beginning of the day value for date , for example 2021/08/24 8:00 am for a single shift of 8:00 am to 4:00 pm.

EndOfDay

DateTime?

The end of the day value for date , for example 2021/08/24 4:00 pm for a single shift of 8:00 am to 4:00 pm.

Last updated