Skip to main content

Score payload format

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 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 string(URL)
URL to view the candidate's assessment profile.

scores array object
A list of Pulsifi fit scores objects representing different aspects of the candidate's assessment.
Child Parameters
score_format integer
The format of the score (e.g., 100 for percentage).

score_type string
The type of the score (e.g., role_fit, organizational_fit).

score_value integer(max 100)
The value of the score.
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
}
]
}