The GET Assessment List API needs to be implemented by the candidate assessment provider so that Dayforce can retrieve the list of all active assessments configured for the client. Dayforce updates the assessment list using the records returned in the response.
Assessments that aren't part of the response are considered deleted or inactive.
Below is an example of the JSON response body expected by Dayforce and its required information:
{
"CreationDateTime": "2019-11-20T07:01:56.266189Z",
"Assessments": [
{
"ShortName": "C #",
"LongName": "C Sharp",
"ReferenceCode": "C#"
},
{
"ShortName": "SQL",
"LongName": "SQL",
"ReferenceCode": "SQL"
}
],
"StatusInfo": {
"Code": "Success"
}
}
| Parameters | Description |
|---|---|
|
CreationDateTime |
Date the details were sent/received |
|
Assessments* |
List of assessments |
|
ShortName* |
Name of the assessment |
|
LongName |
Description of the assessment |
|
ReferenceCode* |
Provider reference code |
|
StatusInfo* |
Information about the request status |
|
Code* |
Status of the request |
|
Message |
Additional message about any errors |