GET api/v1/SkillLevel/StaffReports/{facilityId}
Get SkillLevels for user for that perticular facility This is an asynchronous service.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| facilityId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ApiResponseModelOfListOfSkillByStaffModel| Name | Description | Type | Additional 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"
]
}