Submit a new application via Quicklink
Apply with one click.
What is Quicklink?
Quicklink is Embloy's SDK to allow visitors of your page to submit new applications with just one click.
If you want to integrate Quicklink into your site, you need to be subscribed to at least Embloy-Smart to be able to use this feature.
How to integrate Quicklink
You can find example implementations at Embloy Examples.
-
Create a client token and save it in your backend's environment file.
-
Create a new endpoint in your backend that loads the client token and creates a new Embloy application session using the application portal endpoint from our SDK (see this endpoint). The only required field is
job_slug
that is our way to identify a job that may not be known to us yet. In the event of a successful application, a new blank job will be created (in case it doesn't already exist) for your Embloy account. You can then edit this job in the Embloy dashboard.tipIf you have a 3rd-party ATS running in the background, we recommend setting
job_slug
to the ID of your 3rd-party job posting andmode
to the name of your 3rd-party ATS system (e.g.,ashby
,lever
orsoftgarden
). More on that here.warningIMPORTANT: Make sure to use unique
job_slug
s for each different job posting you make, as they are used to identify a client's job. Of course, you can use the samejob_slug
multiple times on different pages as long as you want all applications submitted to these pages to be linked to the job identified by thejob_slug
.Optionally, you can customize certain fields in the request_token, such as the
mode
,success_url
,cancel_url
and many more features that can be used to customize your job and application process for the user's application portal. See also the token customization documentation. If none of these fields are set, it will redirect to the referrer URL in the case of a successful or canceled application and usejob
as the default request mode (meaning that the job will only be managed by Embloy and not be synchronized with other ATS systems).
You can use Quicklink without having to manually create a job, just by setting all relevant information when creating a request_token. Alternatively, you can, of course, create a custom job and then use the job's job_slug
for the request_token.
-
Redirect to Embloy using the link provided in the
url
field of the response to the request. The link should look something like:https://embloy.com/sdk/apply?request_token=<request-token>
. -
The user applies using Embloy.
-
When the application has been submitted, the user gets redirected back to your site (or the
success_url
/cancel_url
set by you).
How to apply using Quicklink
-
Click on "Apply with Embloy".
-
Get redirected to embloy.com (If already signed into the account, the user will be shown the appliction widget; otherwise, he will have to sign in / register first).
-
Submit application.
-
Get redirected to the original page.
-
Keep track of the application on the application dashboard.