Skip to main content

iFrame Integration

flatchr.io allows clients to embed their job listings on their website or intranet without any technical knowledge, simply by copy-pasting, using an iframe.

If you want to retrieve your listings in JSON format, you can do so via the API 👉 Retrieve active listings.


Important

To configure the iframe, you need your slug, which is the unique reference for your company found in the URL of your career site. It is also available under Administration > Advanced > Subdomain configuration

Example: in https://flatchr.flatchr.io, flatchr is the unique reference or "slug".


Website

To embed your job listings on your website, find below the iframe code to add to the page where you want them to appear.

Simply replace slug with your unique company reference found under Advanced Settings > Advanced > Subdomain configuration

iFrame code without parameters
<iframe
src="https://careers.flatchr.io/company/{SLUG}?iframe=true"
width="100%" height="600px" frameborder="0" marginwidth="0" marginheight="0">
</iframe>

Example with the Flatchr slug

iFrame example code without parameters
<iframe
src="https://careers.flatchr.io/company/flatchr?iframe=true"
width="100%" height="600px" frameborder="0" marginwidth="0" marginheight="0">
</iframe>

Test your iFrame with W3Schools-Try It Yourself


info

For more information about iframes, you can refer to this documentation.


Customization

The iframe can be customized using several parameters:

ParameterTypeRequiredDescription
iframestring✔️Removes default styles
iframe_redirect_urlbooleanOpen links within the iframe
background_colorhex codeBackground color
btn_colorhex codeButton color
submit_textstringButton text
disable_emailbooleanDisable mandatory email to apply
career_redirect_urlurlRedirect URL to the career site
response_textstringThank you message text
spontaneousstringPosition of the spontaneous application button (top, bottom, none)
headerbooleanForce header display in iframe mode (default: false)

note

Parameters must be added to the URL prefixed by the & symbol


Intranet

Important

In your Flatchr workspace under Administration > Advanced you must enter the URL address of your intranet in the Intranet Configuration section so that your iframe can only be displayed within your intranet.

To embed your job listings on your intranet, find below the iframe code to add to the page where you want them to appear.

Simply replace slug with your unique company reference found under Advanced Settings > Advanced > Subdomain configuration

iFrame code
<iframe
src="https://careers.flatchr.io/intranet/slug?iframe=true"
width="100%" height="600px" frameborder="0" marginwidth="0" marginheight="0">
</iframe>

Test your iFrame with W3Schools-Try It Yourself


info

For more information about iframes, you can refer to this documentation.


Customization

note

The iframe can be customized with the same parameters as for the website.