Embedding CV-Transformer
CV-Transformer's candidate editor can be embedded into any web application in a few easy steps.
Each candidate has an editable URL, which can be found in the admin by navigating to a candidate, clicking "Share", and then navigating to "Editable".

The URL can also be constructed from data retrieved from our API.
Fetch the candidate's data using the endpoint GET /candidates
.
Then construct the URL as:
https://www.cv-transformer.com/candidates/{candidate.id}?s={candidate.secret_editable}
You can use this URL to render the candidate editor as an iFrame in your application:
<iframe src="https://www.cv-transformer.com/candidates/{candidate.id}?s={candidate.secret_editable}" />
The URL supports a couple of additional search parameters:
color_scheme
The color scheme in which the page should be displayed. Possible values:"light" | "dark"
language
The language in which the page should be displayed. Possible values:"de" | "en" | "fr" | "nl"