POST api/v1/SkillLevel/GetSkillsByDepartmentIds

Returns department skills for a list of departments This is an asynchronous service.

Request Information

URI Parameters

None.

Body Parameters

SkillLevelsByDepartmentsModel
NameDescriptionTypeAdditional information
DepartmentIds

Collection of integer

None.

EffectiveDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "DepartmentIds": [
    1,
    2
  ],
  "EffectiveDate": "2026-01-02T21:47:50.7592973-06:00"
}

Response Information

Resource Description

ApiResponseModelOfListOfSkillLevelModel
NameDescriptionTypeAdditional information
Data

ApiResponseDataModelOfListOfSkillLevelModel

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": "852911fa-d4ec-4a20-b666-1ab14b409350",
        "DateChanged": "2026-01-02T21:47:50.7592973-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": "852911fa-d4ec-4a20-b666-1ab14b409350",
        "DateChanged": "2026-01-02T21:47:50.7592973-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"
  ]
}