GET api/v1/shifttargets/{departmentId}/{effectiveDate}/{dayOfWeekId}/getvolumelevel
get Volume Level, Volume Low and Volume Peak from ShiftTarget
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| departmentId | integer |
Required |
|
| effectiveDate | date |
Required |
|
| dayOfWeekId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ApiResponseModelOfListOfDepartmentShiftTargetsReturnModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | ApiResponseDataModelOfListOfDepartmentShiftTargetsReturnModel |
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,
"ShiftId": 2,
"ShiftCode": "sample string 3",
"ShiftDescription": "sample string 4",
"ShiftDuration": "sample string 5",
"SkillLevelId": 6,
"SkillCode": "sample string 7",
"Target": 1,
"VolumeLow": 1,
"VolumePeak": 1,
"VolumeLevel": "sample string 8",
"IsInsertedByEtlJob": true
},
{
"DayOfWeekId": 1,
"ShiftId": 2,
"ShiftCode": "sample string 3",
"ShiftDescription": "sample string 4",
"ShiftDuration": "sample string 5",
"SkillLevelId": 6,
"SkillCode": "sample string 7",
"Target": 1,
"VolumeLow": 1,
"VolumePeak": 1,
"VolumeLevel": "sample string 8",
"IsInsertedByEtlJob": true
}
]
},
"Errors": [
"sample string 1",
"sample string 2"
],
"Warnings": [
"sample string 1",
"sample string 2"
]
}