GET api/v1/departmentmatrix/SkillsNoTarget/{departmentId}/{effectiveDate}
Get skill level ids from matrix with zero target. This is an asynchronous service.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| departmentId | integer |
Required |
|
| effectiveDate | date |
Required |
Body Parameters
None.
Response Information
Resource Description
ApiResponseModelOfListOfKVSkillLevelReturnModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | ApiResponseDataModelOfListOfKVSkillLevelReturnModel |
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,
"Description": "sample string 2"
},
{
"SkillLevelId": 1,
"Description": "sample string 2"
}
]
},
"Errors": [
"sample string 1",
"sample string 2"
],
"Warnings": [
"sample string 1",
"sample string 2"
]
}