Embedding
Last updated
Last updated
With the document API you can create a new document. The response of this request will contain an edit_url
property. This URL can be send directly to the end user or it can be used to embed filling out the document in your application.
To allow a user to edit the document in your application, embed fillthedoc using an iframe. The URL of the iframe is the edit_url
of the document.
The UI has a minimalistic style without any branding, so it doesn't look out of place when embedded in most cases. The design is mobile friendly. It's not possible to customize the style.
If the template has a help view, it will be displayed by default, with the option of switching to the document preview. If there is no help view for the template, the document preview is displayed.
Use the ?preview=<mode>
query parameter to toggle what is shown
The iframe will send a message to the parent window when the user finishes the form using window.postMessage()
. The parent window can add a even listener for the "message"
event. In the handler, make sure the message originated from https://filthedoc.com
to prevent abuse with this feature.
The message contains the JSON of the document, which can be used to display information to the user in a rich web application. Data that is not be available for the end user is omitted from the event data.
You should NOT rely on the message for processing the data. Instead, always specify a callback
URL when creating the document.
mode
never
Never show the document preview. Shows the help if available, otherwise just the form.
off
Show the help by default (if available)
on
Show the document preview by default
always
Don't show the help (even if available)