The POST Candidate Assessment Status endpoint needs to be implemented by the assessment provider so that Dayforce can retrieve candidate assessment statuses. The assessment status, indicating whether the candidate has completed the assessment, is returned as part of the response.
The following is a sample request that Dayforce sends to providers:
{
"CreationDateTime": "2019-11-20T10:23:31.733312Z",
"CandidateAssessmentGuid": "6015AA33-5E91-41DE-994A-0F4C7F8FED6F"
}
| Parameters | Description |
|---|---|
|
CreationDateTime |
Date the details were sent/received |
|
CandidateAssessmentGuid* |
Dayforce candidate assessment reference |
|
AssessmentStatus* |
Candidate assessment status: Not Started, Pending, In Progress, Completed |
|
StatusInfo* |
Information about the request status |
|
Code* |
Status of the request |
|
Message |
Additional message about any errors |
The following is a sample response that Dayforce is expecting from the provider:
{
"CreationDateTime": "2019-11-20T10:26:49.0899826Z",
"CandidateAssessmentGuid": "6015AA33-5E91-41DE-994A-0F4C7F8FED6F",
"AssessmentStatus": "Completed",
"StatusInfo": {
"Code": "Success"
}
}