Returns all skills that the specified employee has.
A response header called "Pagination-MorePagesAvailable" will be sent in the response with a value of "yes" or "no", indicating whether more pages are available after this one. That is, if the header value is "yes", the client should request the next page.
Ok
Bad Request
[- {
- "EmployeeCode": "string",
- "EmployeePayrollCode": "string",
- "SkillName": "string",
- "CourseCode": "string",
- "CertificationDate": "2019-08-24T14:15:22Z",
- "ExpirationDate": "2019-08-24T14:15:22Z",
- "TrainingTime": 0,
- "Note": "string",
- "IsDismissed": true,
- "LastModified": "2019-08-24T14:15:22Z",
- "CreatedDate": "2019-08-24T14:15:22Z",
- "Attachments": [
- {
- "AttachmentUrl": "string",
- "Name": "string"
}
]
}
]
Returns all employees having the specified skill.
A response header called "Pagination-MorePagesAvailable" will be sent in the response with a value of "yes" or "no", indicating whether more pages are available after this one. That is, if the header value is "yes", the client should request the next page.
Ok
Bad Request
[- {
- "EmployeeCode": "string",
- "EmployeePayrollCode": "string",
- "SkillName": "string",
- "CourseCode": "string",
- "CertificationDate": "2019-08-24T14:15:22Z",
- "ExpirationDate": "2019-08-24T14:15:22Z",
- "TrainingTime": 0,
- "Note": "string",
- "IsDismissed": true,
- "LastModified": "2019-08-24T14:15:22Z",
- "CreatedDate": "2019-08-24T14:15:22Z",
- "Attachments": [
- {
- "AttachmentUrl": "string",
- "Name": "string"
}
]
}
]
Returns a cross join of employees and skills, with each result representing a single skill for a single employee. For example, if there are 10 employees and each employee has 10 skills, this call will return 100 results.
A response header called "Pagination-MorePagesAvailable" will be sent in the response with a value of "yes" or "no", indicating whether more pages are available after this one. That is, if the header value is "yes", the client should request the next page.
Ok
[- {
- "EmployeeCode": "string",
- "EmployeePayrollCode": "string",
- "SkillName": "string",
- "CourseCode": "string",
- "CertificationDate": "2019-08-24T14:15:22Z",
- "ExpirationDate": "2019-08-24T14:15:22Z",
- "TrainingTime": 0,
- "Note": "string",
- "IsDismissed": true,
- "LastModified": "2019-08-24T14:15:22Z",
- "CreatedDate": "2019-08-24T14:15:22Z",
- "Attachments": [
- {
- "AttachmentUrl": "string",
- "Name": "string"
}
]
}
]
Creates or updates a skill for an existing employee, using the skill's course code or name as a unique identifier.
If the skill does not exist, it is simply created. If the skill already exists, the old skill is "dismissed" but retained for record-keeping, and a new, non-dismissed skill is created.
The skill to be upserted for an existing employee.
Accepted
{- "EmployeeCode": "string",
- "EmployeePayrollCode": "string",
- "SkillName": "string",
- "CourseCode": "string",
- "CertificationDate": "2019-08-24T14:15:22Z",
- "ExpirationDate": "2019-08-24T14:15:22Z",
- "TrainingTime": 0,
- "Note": "string",
- "IsDismissed": true,
- "LastModified": "2019-08-24T14:15:22Z",
- "CreatedDate": "2019-08-24T14:15:22Z",
- "Attachments": [
- {
- "AttachmentUrl": "string",
- "Name": "string"
}
]
}
"string"
Imports a list of employee skills, using the skill's course code or name as a unique identifier on each employee.
This call does not create any new employees; all specified employee codes must belong to pre-existing employees.
If the skill does not exist for a particular employee, it is simply created. If the skill already exists, the old skill is "dismissed" but retained for record-keeping, and a new, non-dismissed skill is created.
A list of employee skills
Ok
Bad Request
[- {
- "EmployeeCode": "string",
- "EmployeePayrollCode": "string",
- "SkillName": "string",
- "CourseCode": "string",
- "CertificationDate": "2019-08-24T14:15:22Z",
- "ExpirationDate": "2019-08-24T14:15:22Z",
- "TrainingTime": 0,
- "Note": "string",
- "IsDismissed": true,
- "LastModified": "2019-08-24T14:15:22Z",
- "CreatedDate": "2019-08-24T14:15:22Z",
- "Attachments": [
- {
- "AttachmentUrl": "string",
- "Name": "string"
}
]
}
]
{ }