Skip to main content

Automate contract employee lifecycle with Google Docs, DocuSign & Airtable

Workflow preview

Workflow preview
100%
Automate contract employee lifecycle with Google Docs, DocuSign & Airtable preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

Automated Contract Employee Placement & Management System: Setup Guide This guide will walk you through setting up your n8n workflow. By the end, you'll have a fully automated system for managing...

Best for

  • HR automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.webhook, n8n-nodes-base.airtable, n8n-nodes-base.googledocs, n8n-nodes-base.httprequest, n8n-nodes-base.wait, n8n-nodes-base.slack, n8n-nodes-base.googlecalendar, n8n-nodes-base.scheduletrigger

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Marth.

Original n8n.io source

1.1 Workflow description

Title
Automate contract employee lifecycle with Google Docs, DocuSign & Airtable
Workflow name
Automate contract employee lifecycle with Google Docs, DocuSign & Airtable

⚙ Automated Contract Employee Placement & Management System: Setup Guide

This guide will walk you through setting up your n8n workflow. By the end, you'll have a fully automated system for managing your contract employee placements, from generating documents to sending renewal reminders.


How It Works

This workflow is structured in three logical phases to automate the entire contract management lifecycle:

  1. Phase 1: Placement Trigger & Data Retrieval: The workflow begins when a new placement record is created in your CRM or database. It automatically retrieves all necessary employee and client data to prepare for contract generation.

  2. Phase 2: Contract Generation & Delivery: The system uses a pre-made Google Docs template to generate a professional contract. It then automatically sends this document for e-signature via DocuSign to both the employee and the client.

  3. Phase 3: Post-Placement Management & Reminders: Once the contract is signed, the workflow updates your database, notifies your team, and adds the start date to your calendar. A separate scheduled automation runs weekly to proactively check for expiring contracts and send renewal reminders.


Step-by-Step Setup Guide

Follow these steps to configure the workflow in your n8n instance.

Step 1: Prerequisites & Database Setup

Before you begin, ensure you have the following accounts and a workspace set up:

  • n8n Instance: Your self-hosted or cloud-based n8n instance.
  • Airtable: Your main database for managing placements.
  • Google Docs: A contract template saved in your Google Drive.
  • DocuSign: For handling electronic signatures.
  • Slack: For internal team notifications.
  • Google Calendar: For adding start dates to a shared team calendar.

Airtable Database Preparation: Create an Airtable base with a Placements table. This table must include the following columns:

  • Candidate Name
  • Candidate Email
  • Client Name
  • Client Contact Email
  • Start Date
  • End Date
  • Status

Google Docs Template Preparation: Create a contract template in Google Docs with placeholders in the format {{placeholder}} (e.g., {{candidateName}}, {{clientName}}).

Step 2: Workflow Import & Credential Configuration

  1. Import the workflow's .json file into your n8n instance. All the necessary nodes will appear on your canvas.
  2. Click on any node with a red "!" icon (e.g., the Airtable or DocuSign node).
  3. Click "Create new credential" and follow the instructions to connect your accounts. Repeat this for all nodes that require credentials.

Step 3: Node-Specific Configuration

Configure the following key nodes to match your specific setup:

  1. Webhooks Trigger:

    • Click on the Webhooks Trigger node and copy the Webhook URL.
    • Configure your CRM or Airtable to send a POST request to this URL whenever a new placement is created.
  2. Airtable Nodes:

    • For every Airtable node in the workflow, enter the correct Base ID and Table Name (Placements) that you created in Step 1.
  3. Google Docs Node:

    • In the Template File ID field, enter the file ID of your Google Docs contract template.
    • Map the placeholders you created in your template to the dynamic data from your database (e.g., {{candidateName}} should be mapped to ={{ $json.candidate_name }}).
  4. DocuSign Node:

    • Enter your Account ID in the credentials settings.
    • Map the Signer Name and Signer Email fields to the data from your database.
    • Ensure your DocuSign envelope template is configured with anchor text (e.g., /signature/) that matches the anchor tags in the DocuSign node.
  5. Cron Trigger:

    • The Cron Trigger node is set up to check for expiring contracts. You can adjust the Interval parameter (e.g., Every Week) to match your desired schedule.

Step 4: Activation

  1. Once all credentials and node configurations are complete, click "Save" at the top of the canvas.
  2. Toggle the workflow to "Active" in the top-right corner.

The workflow is now live! It will automatically handle contract generation, signatures, and reminders for every new placement.

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Candidate Placed

Type / Role
n8n-nodes-base.webhook - webhook
Config choices
Version 2

Block 2 - Get a record

Type / Role
n8n-nodes-base.airtable - airtable
Config choices
Version 2.1

Block 3 - Create Contract from Template

Type / Role
n8n-nodes-base.googleDocs - googleDocs
Config choices
Version 2

Block 4 - Send Document for Signature

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 5 - Signatures Received

Type / Role
n8n-nodes-base.wait - wait
Config choices
Version 1.1

Block 6 - Update Status 'Signed'

Type / Role
n8n-nodes-base.airtable - airtable
Config choices
Version 2.1

Block 7 - Notify Team

Type / Role
n8n-nodes-base.slack - slack
Config choices
Version 2.3

Block 8 - Add Start Date

Type / Role
n8n-nodes-base.googleCalendar - googleCalendar
Config choices
Version 1.3

Block 9 - Check Contract End Dates

Type / Role
n8n-nodes-base.scheduleTrigger - scheduleTrigger
Config choices
Version 1.2

Block 10 - Get Expiring Contracts

Type / Role
n8n-nodes-base.airtable - airtable
Config choices
Version 2.1

Block 11 - Contracts Found?

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.2

Block 12 - Send Renewal Reminder

Type / Role
n8n-nodes-base.slack - slack
Config choices
Version 2.3

Block 13 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 14 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 15 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 16 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

3. Summary Table

Workflow Automate contract employee lifecycle with Google Docs, DocuSign & Airtable
Complexity advanced
Nodes 16
Categories HR
Author Marth
Published 08 Aug 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/7185/7185.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Automate contract employee lifecycle with Google Docs, DocuSign & Airtable do?

Automated Contract Employee Placement & Management System: Setup Guide This guide will walk you through setting up your n8n workflow. By the end, you'll have a fully automated system for managing...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your HR use case.