POST Invite Candidates to an Assessment¶
This is a v2 API invites candidates to the specified Assessment and returns an Invite Link for each.
Request URL¶
POST /assessment/invite
Body Parameters¶
{
"assessment_id": "integer",
"invite_format": "string",
"expiry_date": "string",
"candidates": [
{
"name": "string",
"email": "string"
}
]
}
Warning
Make sure to add your API key in Header of the request
Parameters¶
Parameter |
Type |
Description |
|---|---|---|
assessment_id |
integer |
The Assessment ID to which you want to invite the candidates. |
invite_format |
enum |
|
candidates |
array |
List of candidates to invite. Each item must include name and email (alternatively candidate_name and candidate_email). At least one candidate is required; maximum 500 per request. |
expiry_date (optional) |
string |
Example: 2024-12-31 18:30 |
Response¶
A JSON response containing a list of results; each entry has the candidate information and Invite Link for that candidate.
{
"invites": [
{
"name": "string",
"email": "string",
"report_id": "integer",
"candidate_id": "integer",
"assessment_id": "integer",
"invite_link": "string",
"status": "string"
}
]
}