POST api/v1/SecondaryDepartments/UnassociatedSecondaryStaff
Get All Unassociated Secondary Staff details This is an asynchronous service.
Request Information
URI Parameters
None.
Body Parameters
UnassociatedSecondaryStaffRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| DepartmentId | integer |
Required |
|
| LastName | string |
None. |
|
| FirstName | string |
None. |
|
| PrimarySkills | string |
None. |
|
| EmployeeTypes | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"DepartmentId": 1,
"LastName": "sample string 2",
"FirstName": "sample string 3",
"PrimarySkills": "sample string 4",
"EmployeeTypes": "sample string 5"
}
Response Information
Resource Description
ApiResponseModelOfListOfUnassociatedSecondaryStaffModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | ApiResponseDataModelOfListOfUnassociatedSecondaryStaffModel |
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": [
{
"StaffId": 1,
"LastName": "sample string 2",
"FirstName": "sample string 3",
"Department": "sample string 4",
"Facility": "sample string 5",
"FacilityCoid": "sample string 6",
"PrimarySkill": "sample string 7",
"SecondarySkills": [
"sample string 1",
"sample string 2"
]
},
{
"StaffId": 1,
"LastName": "sample string 2",
"FirstName": "sample string 3",
"Department": "sample string 4",
"Facility": "sample string 5",
"FacilityCoid": "sample string 6",
"PrimarySkill": "sample string 7",
"SecondarySkills": [
"sample string 1",
"sample string 2"
]
}
]
},
"Errors": [
"sample string 1",
"sample string 2"
],
"Warnings": [
"sample string 1",
"sample string 2"
]
}