POST api/v1/servicelinesskillspecializationsmappings/AddUpdateMapping
Add or update ServiceLines Skill Specializations Mapping. This is an asynchronous service.
Request Information
URI Parameters
None.
Body Parameters
ServiceLinesSkillSpecializationsMappingRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ServiceLineSkillSpecializationMappingId | integer |
None. |
|
| ClusterId | integer |
None. |
|
| FsSkillLevelId | integer |
None. |
|
| NeedAllocationPercentage | integer |
None. |
|
| WfFolderGroupId | integer |
None. |
|
| WfFolderGroupName | string |
None. |
|
| IsDefault | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"ServiceLineSkillSpecializationMappingId": 1,
"ClusterId": 2,
"FsSkillLevelId": 3,
"NeedAllocationPercentage": 4,
"WfFolderGroupId": 5,
"WfFolderGroupName": "sample string 6",
"IsDefault": true
}
Response Information
Resource Description
ApiResponseModelOfServiceLinesSkillSpecializationsMappingRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | ApiResponseDataModelOfServiceLinesSkillSpecializationsMappingRequestModel |
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": {
"ServiceLineSkillSpecializationMappingId": 1,
"ClusterId": 2,
"FsSkillLevelId": 3,
"NeedAllocationPercentage": 4,
"WfFolderGroupId": 5,
"WfFolderGroupName": "sample string 6",
"IsDefault": true
}
},
"Errors": [
"sample string 1",
"sample string 2"
],
"Warnings": [
"sample string 1",
"sample string 2"
]
}