Skip to main content

Candidate Object

    export const myWidgetComponent = () => {
<Widget
candidate={{
email: 'John.Doe@gmail.com',
username: 'John Doe',
reapply: true
}}
config={/* ... */}
/>
}

Parameters of a config

ParamTypeRequiredDescription
emailStringtrueEmail of the candidate
usernameStringfalseFull name of the candidate
reapplyBooleanfalseAllow the candidate to re-apply after submitting the interview

email

Passing a valid format email of the candidate

email: "test@test.com";

username

Passing the name of the candidate to be able to identify them more easily

username: "xxxxxxxxx";

reapply

Set to true to enable candidates to re-apply after submitting the interview

reapply: true;