The Automation Assistant helps you connect DocInject documents to the workflow tools your team already uses. Describe what you want to automate and the assistant generates a complete, platform-specific recipe you can copy directly into your automation tool.Documentation Index
Fetch the complete documentation index at: https://docs.docinject.com/llms.txt
Use this file to discover all available pages before exploring further.
Supported platforms
- Gumloop
- Make
- n8n
- Pipedream
- Zapier
- Other (generic HTTP / custom)
How to use it
Open the Automation Assistant
Click Build an automation from the Dashboard. The assistant opens as a panel.
Select a document (optional)
Choose the SOP, playbook, or guide you want to automate around. The assistant uses the document’s title, department, and content to tailor the recipe. Select Skip if you want a general automation not tied to a specific document.
Select a department (optional)
If your organization has departments configured, choose the relevant one. Select Skip to continue without a department filter.
Choose your automation platform
Select the platform you’re building on. This determines the syntax and structure of the generated recipe.
Describe your automation
Type what you want to automate in the chat. The assistant may ask one or two focused questions to clarify the outcome. Once it has enough context, it generates a complete recipe.
What the assistant generates
The assistant produces a step-by-step recipe written in the native vocabulary of your chosen platform — using the correct module names, field references, and variable syntax for that tool. For webhook-based automations, it includes the signature verification step using your webhook secret, because DocInject requires signature verification before processing any event.Example automations
Notify a Slack channel when a document is published
Notify a Slack channel when a document is published
Set up a
document.published webhook, then use the assistant with your Slack workspace as the goal. The recipe will trigger on the webhook, verify the signature, extract the document title and URL from the payload, and post a formatted message to a channel of your choice.Trigger an onboarding flow when an SOP is revised
Trigger an onboarding flow when an SOP is revised
Select your onboarding SOP, choose the
document.revised event, and describe the downstream action (for example, reassigning tasks in your project tool or sending an email to new hires). The recipe references data.previous_version_id so you can compare versions.Poll the inbox to sync documents to a CRM or knowledge base
Poll the inbox to sync documents to a CRM or knowledge base
If you can’t use webhooks, describe a polling automation and the assistant will generate a scheduled recipe that calls
GET /api/v1/organizations/{org_slug}/inbox with your API key and upserts the results into your target system.