POST api/v1/SkillLevel/search
Returns a list of Skill Levels based on search criteria sorted by sort criteria. This is an asynchronous service.
Request Information
URI Parameters
None.
Body Parameters
SkillLevelCriteriaModel| Name | Description | Type | Additional information |
|---|---|---|---|
| SearchCriteria | SkillLevelSearchCriteriaModel |
None. |
|
| SortingCriteria | SkillLevelSortCriteriaModel |
None. |
|
| Page | integer |
None. |
|
| PageSize | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"SearchCriteria": {
"SkillCode": 1,
"Description": "sample string 2",
"LongDescription": "sample string 3",
"Category": "sample string 4"
},
"SortingCriteria": {
"SortSkillCodeAsc": 0,
"SortDescriptionAsc": 0,
"SortLongDescriptionAsc": 0,
"SortSortOrderAsc": 0,
"SortCategoryAsc": 0,
"SortProfessionalAsc": 0
},
"Page": 1,
"PageSize": 2
}
Response Information
Resource Description
ApiResponseModelOfIEnumerableOfSkillLevelModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | ApiResponseDataModelOfIEnumerableOfSkillLevelModel |
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",
"SkillCode": 3,
"SortOrder": 4,
"AppChanged": "sample string 5",
"UserChanged": "sample string 6",
"Version": "QEA=",
"Rowguid": "afe9d574-088d-48b4-9411-0c79fd4e668c",
"DateChanged": "2026-01-02T12:57:39.6312793-06:00",
"LongDescription": "sample string 8",
"Licensed": true,
"SkillLevelCategoryId": 1,
"OnDashboard": true
},
{
"SkillLevelId": 1,
"Description": "sample string 2",
"SkillCode": 3,
"SortOrder": 4,
"AppChanged": "sample string 5",
"UserChanged": "sample string 6",
"Version": "QEA=",
"Rowguid": "afe9d574-088d-48b4-9411-0c79fd4e668c",
"DateChanged": "2026-01-02T12:57:39.6312793-06:00",
"LongDescription": "sample string 8",
"Licensed": true,
"SkillLevelCategoryId": 1,
"OnDashboard": true
}
]
},
"Errors": [
"sample string 1",
"sample string 2"
],
"Warnings": [
"sample string 1",
"sample string 2"
]
}