Pasar al contenido principal
No se encontró ningún elemento.
logo de dropboxsign
¿Por qué Dropbox Sign?
Expandir o contraer acordeón

Lo que puedes hacer

Firmar documentos onlines
Crear firmas electrónicas
Selecciona o crea plantillas
Rellena y firma PDF
Completa contratos online
Administración de documentos
Explora las características
ícono de flecha que apunta hacia la derecha

Casos de uso

Ventas y desarrollo de negocios
Recursos Humanos
Empresas emergentes
Tecnología financiera
Inmobiliario
Servicios a la carta
Productos
Expandir o contraer acordeón
ícono de dropbox
Sign
Facilita el envío y la firma
ícono de dropbox
Sign API
Integra eSign en tus flujos de trabajo
ícono de dropbox fax
Fax
Envía faxes sin usar una máquina de fax
ícono de integraciones de dropbox
Integraciones
Nos reunimos contigo donde trabajas.
Recursos
Expandir o contraer acordeón
Blog
Novedades sobre productos y experiencia en flujos de trabajo
Historias de clientes
Historias del mundo real con resultados reales
Centro de ayuda
Orientación en profundidad para nuestros productos
Biblioteca de recursos
Informes, videos y hojas informativas
Desarrolladores
Precios
Expandir o contraer acordeón
Precios de Dropbox Sign
Buscar el plan apropiado para ti
Precios de la API de Dropbox Sign
Historias del mundo real con resultados reales
Comunícate con ventas
Registrarse
Comunícate con ventas
Inicia sesión
Expandir o contraer acordeón
Dropbox Sign
Dropbox Forms
Dropbox Fax
Pruébalo gratis
Blog
/
Asesoramiento en recursos humanos

Build Document Signing into Your Employee Onboarding

by 
Luke Russell
September 10, 2021
6
minuto de lectura
"Build Document Signing into Your Employee Onboarding" header image
icono tooltip

Nuevo aspecto, ¡el mismo gran producto! HelloSign ahora es Dropbox Sign.

icono cerrar

Every new employee onboarding requires signing and submitting several official documents. While physical paperwork served well in the past, nowadays many companies do not even have a physical office at all. Getting documents signed and submitted through the mail can be a major headache. So what’s the best solution in the age of remote work?


eSignature documents alleviate the headache of signing physical documents by digitizing the entire process. Having a seamless onboarding experience is an opportunity to improve employee satisfaction and keep their level of excitement high. Dropbox Sign can help take employee onboarding documents out of the corner file cabinet and transform them into feature-rich virtual documents, singable anywhere.


The Dropbox Sign eSignature API makes building eSignature workflows and organizing digital documents more manageable than ever before. Employees can be assigned documents, such as NDAs and W-9s, and have them accessible in one centralized place.


Autofill Employee Information

Dropbox Sign can autofill your employee's information for them, saving time and effort while ensuring accuracy. You didn't hire them to spend an hour or two filling out the same personal details over and over again on dozens of documents, after all. Let's go through a basic example of the Dropbox Sign API in action.


We have two main users: HR reps and employees being onboarded. We’ll use the Dropbox Sign API to allow HR reps to create eSignature templates and employees to sign onboarding docs on the same web portal.


Dropbox Sign offers SDKs in a number of languages; we'll be using the NodeJS SDK. The functionality detailed below can be utilized in any SDK, or with calls directly to the API. Also, our documentation shows example calls for endpoints in all of the supported languages. Be sure to give it a look as you build out your apps!


If you don't already have a Dropbox Sign account, create one, and then grab your API key from the settings page. While you're at it, make a Dropbox Sign API app, and jot down the Client ID for that app. The API key and Client ID are all the information you need to begin.

‍

‍

First, consider where you're getting the information that will auto-populate the fields you set up. You might be using a database or calling another API. As long as you have some way to pull that data into your application, the SDK can be use it to auto-fill documents.


Use the Create Embedded Template Draft endpoint to draft up a template for your Human Resources team to edit. From here you can declare the title, subject, and other parameters. You can also set up `merge_fields`, which allow you to prefill data with information you already have about the employee.

‍

‍

In this example, we’re creating a template with two `merge_fields`: “New Hire Name”, and “New Hire Address”. Both are inserted into textbox fields in the document that are prefilled with employee data during signing.


The `edit_url` gets passed to the front end and embedded in an iFrame on your web portal, where HR reps can finish setting up the template, as show in the picture below. By placing the autofill field called "Full Name" on the document, the employee won't have to manually type in their full name. Instead, the autofill field will populate their name when they fill out the template for themselves.

Image of the HelloSign app, with an autofilled "Full Name" field highlighted

‍

Once the template is edited by HR, it is saved to Dropbox Sign. Now future signing flows can reference the “NDA template” by using the `template_id` when creating their signature requests. Next, we’ll use the new template for embedded signing to allow new hires to sign directly on the portal.

Embed eSignature signing in company portal

Now we'll be using the API to allow employees to sign signature requests from the employee portal. Specifically, we'll set up an API request for a new employee named Jack as the signer so he can quickly sign his onboarding documents.


Be sure to pass a `custom_fields` parameter when your app creates signature requests using merge fields. The custom fields passed in the signature request must match the merge fields used to create the template. This is where your app will pull in the employee information.

‍

‍

The key of your Custom Field needs to match the Merge Field in the template so the corresponding value will be pre-filled on the document when it’s signed.


If the request is successful, great! Grab a piece of information before moving on: the `sign_url`. You can grab it via Jack's `signature_id` with the Get Embedded Sign URL.

‍

‍

This `sign_url` is passed on to the front end of the employee portal, where Jack can then sign the document wherever it is embedded.


Your control doesn't stop behind the scenes because you can also customize how the signing experience will appear to your new hires. Just like how they'll dress to impress on their first day, you can dress up your company's signing experience.


Customize Your Scalable Signing Experience

Using Dropbox Sign, your users will see a customizable page with an embedded iFrame that will walk them through the signing process. The frontend methodology is the same for creating both standard and templated eSignature requests.


To embed and customize, you'll need to install Dropbox Sign Embedded with npm

‍

‍

That's all you need to install before delving into the code. In this example, we'll be showing you how to implement the eSignature iFrame into a basic HTML webpage using plain JavaScript. You just need to place the code snippet in the `<script>` tag on your page.


You also need to grab the  from your backend. With these parameters, you're ready to display the iFrame on the web portal. You'll want to pass `edit_url` to a page accessible by employees working in Human Resources so they can edit the template, and pass `sign_url` to the page that new employees can access so they can sign the document.

‍

‍

You can customize the behavior of the iFrame via the open() method. For example, you can adjust the language used in the request or add a redirect URL for the page after the signing process is complete. A quick way to test out these features is with Dropbox Sign's Embedded Testing Tool.


For aesthetic design, you'll want to turn to our Premium Branding feature. Premium branding allows you to add your company's specific logos, colors, and branding to the embedded Dropbox Sign page.


There are a variety of aesthetic customizations possible which are detailed in the Premium Branding Guide. For premium branding, you'll use the Update API App endpoint, as premium branding is adjusted at the app level. For example, to update the company logo and change the color scheme of the primary button, you would do the following:

‍

‍

Once you've customized the experience to your liking, you'll have the perfect design for any future new employees. That's what is so useful about implementing an eSignature flow in this manner; a lot of the busy work is gone for good. In fact, you could design your app to listen for instances of new employees being added to the employee resource you're pulling from, perhaps via a webhook, and automatically send out the signature requests without a single human action needed.


Improve employee satisfaction with seamless onboarding

There are a lot of difficulties businesses experience when growing, but dealing with ever-increasing piles of paperwork doesn't need to be one of them. Implement the eSignature flow with Dropbox Sign to ensure that your onboarding process is automated and scalable. For more information on what else you can do with the Dropbox Sign API, be sure to check out our developer portal.

Mantente actualizado

¡Listo! Consulta tu bandeja de entrada.

Thank you!
Thank you for subscribing!

Lorem ipsum

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat. Aenean faucibus nibh et justo cursus id rutrum lorem imperdiet. Nunc ut sem vitae risus tristique posuere.

Lorem ipsum
ícono de flecha que apunta hacia la derecha
icono cerrar

Up next:

illustration of a man with a ladder standing on a bunch of shapes slowly assembling them in a document
Asesoramiento en recursos humanos
4
minuto de lectura

Is it time to update your employment contracts?

A man is opening a handbook up and a bright shining light is showing on his face
Asesoramiento en recursos humanos
7
minuto de lectura

How to get started with an employee handbook

Hoja de información

Cómo las firmas electrónicas ayudan a las PYMES a vender más rápido, contratar desde cualquier lugar y aumentar la productividad de los empleados

Productos
Dropbox SignAPI de Dropbox SignDropbox FaxIntegraciones
¿Por qué Dropbox Sign?
Firmas electrónicasFirmar documentosFirma y rellena PDFContratos en líneaCrear firmas electrónicasEditor de firmasFirma documentos de Word
Soporte
Centro de ayudaComunícate con ventasComunícate con soporteAdministrar cookiesPrimeros pasos: Dropbox SignPrimeros pasos: API de Dropbox Sign
Recursos
BlogHistorias de clientesCentro de RecursosGuía de legalidadCentro de confianza
Socios
Socios EstratégicosLocalizador de socios
Empresa
Carrera profesionalCondiciones del servicioPrivacidad
ícono de facebookícono de youtube

Formas de pago aceptadas

logo de Mastercardlogo de Visalogo de American Expresslogo de Discover
Insignia de cumplimiento con la CPAInsignia de cumplimiento con la HIPAAInsignia Sky High Enterprise ReadyInsignia de certificación ISO 9001

Las firmas electrónicas de Dropbox Sign son legalmente vinculantes en los Estados Unidos, la Unión Europea, el Reino Unido y en muchos países del mundo.
Para obtener más información, consulta nuestros Términos y Condiciones y Política de Privacidad