GET api/v1/shifttargets/{departmentId}/{effectiveDate}/getvolumelevels

Get Volume Levels for all 7 Days out of the Week for the Dept and Effective Date.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
departmentId

integer

Required

effectiveDate

date

Required

Body Parameters

None.

Response Information

Resource Description

ApiResponseModelOfListOfShiftTargetVolumeLevelReturnModel
NameDescriptionTypeAdditional information
Data

ApiResponseDataModelOfListOfShiftTargetVolumeLevelReturnModel

None.

Errors

Collection of string

None.

Warnings

Collection of string

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": {
    "PageSize": 1,
    "Page": 2,
    "TotalPages": 3,
    "TotalResults": 4,
    "Results": [
      {
        "DayOfWeekId": 1,
        "VolumeLow": 1,
        "VolumePeak": 1,
        "VolumeLevel": "sample string 2",
        "StatDescription": "sample string 3",
        "IsAncillaryDepartment": true
      },
      {
        "DayOfWeekId": 1,
        "VolumeLow": 1,
        "VolumePeak": 1,
        "VolumeLevel": "sample string 2",
        "StatDescription": "sample string 3",
        "IsAncillaryDepartment": true
      }
    ]
  },
  "Errors": [
    "sample string 1",
    "sample string 2"
  ],
  "Warnings": [
    "sample string 1",
    "sample string 2"
  ]
}