RESTful POST Candidate Assessment Status

Dayforce RESTful Web Services Developer Guide

Version
R2025.2.1
ft:lastPublication
2025-11-05T18:19:39.327058
RESTful POST Candidate Assessment Status

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"
}
Response schema parameters
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"
    }
}