Below is an example of the score format that Pulsifi will push to Workday.
Requirements from Workday
• Endpoint URL: Workday to provide the upsert endpoint.
• Authentication: Workday may provide credentials if required, or allow access through a public endpoint.
Parameters
report_pdf_link nullable string(URL) URL to download the candidate's assessment report in PDF format. The link is valid for up to 3 months.
report_profile_link nullable string(URL) URL to view the candidate's assessment profile.
scores nullable array object A list of Pulsifi fit scores objects representing different aspects of the candidate's assessment.
Child Parameters
Score payload format
{
"report_pdf_link": "https://link.to/pdf",
"report_profile_link": "https://link.to/profile",
"scores": [
{
"score_format": 100,
"score_type": "role_fit",
"score_value": 85
},
{
"score_format": 100,
"score_type": "organizational_fit",
"score_value": 90
}
]
}