POST api/v1/SkillLevel/staffskillcoverage

Get SkillLevels for staff/ User by Departments This is an asynchronous service.

Request Information

URI Parameters

None.

Body Parameters

SkillLevelsAndCoverageSkillsByStaffRequestModel
NameDescriptionTypeAdditional information
StaffId

integer

Required

FacilityId

integer

Required

DepartmentIds

string

Required

Request Formats

application/json, text/json

Sample:
{
  "StaffId": 1,
  "FacilityId": 2,
  "DepartmentIds": "sample string 3"
}

Response Information

Resource Description

ApiResponseModelOfListOfSkillByStaffModel
NameDescriptionTypeAdditional information
Data

ApiResponseDataModelOfListOfSkillByStaffModel

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": [
      {
        "SkillLevelID": 1,
        "SkillCode": 2,
        "SkillDescription": "sample string 3",
        "IsPrimarySkill": true,
        "IsCoverageSkill": true,
        "IsViewAllDepartments": true
      },
      {
        "SkillLevelID": 1,
        "SkillCode": 2,
        "SkillDescription": "sample string 3",
        "IsPrimarySkill": true,
        "IsCoverageSkill": true,
        "IsViewAllDepartments": true
      }
    ]
  },
  "Errors": [
    "sample string 1",
    "sample string 2"
  ],
  "Warnings": [
    "sample string 1",
    "sample string 2"
  ]
}