GET api/v1/KeyValues/GetSkillsAsync/{departmentId}/{effectiveDate}
Return a list of skills to display in the department at specified Time. 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
ApiResponseModelOfListOfKVSkillsReturnModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | ApiResponseDataModelOfListOfKVSkillsReturnModel |
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": [
{
"Id": 1,
"IsInDepartment": "sample string 2",
"Code": "sample string 3",
"Description": "sample string 4",
"Professional": "sample string 5"
},
{
"Id": 1,
"IsInDepartment": "sample string 2",
"Code": "sample string 3",
"Description": "sample string 4",
"Professional": "sample string 5"
}
]
},
"Errors": [
"sample string 1",
"sample string 2"
],
"Warnings": [
"sample string 1",
"sample string 2"
]
}