Skip to content

Workflow Templates Library

Access from: Processes → Workflows → New → From template

Templates are predefined workflows that you can copy and customize for your account. They cover the most common Amazon optimization use cases and save you the work of configuring each node manually.

Available templates

TemplateTriggerWhat it doesKey actions
Title length reviewManual or scheduledIterates your products and detects titles with fewer than 80 characters. Creates a task for each non-compliant product and automatically resolves it when corrected.forEach, code-execute, condition, create-task, resolve-task
Complete SEO evaluation (6 criteria)Manual or scheduledEvaluates each product across 6 SEO dimensions and creates an independent task for each failing criterion.forEach, code-execute, condition ×6, create-task ×6, resolve-task ×6
Title optimization with grouped itemsScheduled (weekly cron)Similar to the title review, but groups all affected products into a single task with multiple items. Includes HITL for human oversight.forEach, code-execute, condition, create-task (items mode), resolve-task

Template details

Title length review

Simple use case to get started with workflows. Iterates the products of a connection and marketplace, evaluates whether the title has at least 80 characters and acts accordingly.

Flow:

Idempotent behavior: Uses a unique taskKey per product. If the product already has an open task and now complies, it automatically resolves it. If it fails again, it reopens it. This allows scheduling the workflow with a daily or weekly cron without duplicating tasks.

Complete SEO evaluation (6 criteria)

Advanced template that audits each product across 6 fundamental dimensions of Amazon SEO:

CriterionMinimum requirementWhat is verified
Title length≥ 100 charactersThat the title takes advantage of the available space
Brand in titleStarts with the brandThat the brand appears at the beginning of the title
Description≥ 300 charactersThat the description is sufficiently detailed
Bullet points5 bullets, each ≥ 200 charactersThat all 5 bullets are used and are informative
Search terms≥ 200 charactersThat backend search terms are properly utilized
Stock> 10 unitsThat the product has sufficient stock for sale

Each criterion generates an independent task with its own taskKey (for example, seo-title-length::ASIN123). This allows you to see at a glance how many products fail in each dimension and prioritize corrections.

Title optimization with grouped items

Variant of the title review designed for supervised bulk review:

  • A single task groups all products with short titles as individual items.
  • Each item shows the current title value and suggests a minimum length.
  • The HITL flag is enabled: items must be reviewed by a human before being applied to products or campaigns.
  • On re-executions, the workflow automatically cleans up items for products that now comply (pruneStaleItems).

Ideal for: Teams that prefer to review all issues together in a single task, rather than managing one task per product.

How to use a template

  1. Go to Processes → Workflows
  2. Click New workflow
  3. Select From template
  4. Choose the desired template
  5. Configure the target connection and marketplace
  6. (Optional) Adjust thresholds, criteria or the trigger
  7. Activate the workflow

Customize templates

Templates are a starting point. Once copied, you can add nodes, change conditions or add additional actions such as sending an email with the summary or creating Discord notifications.

Available node types

Both templates and custom workflows can use these node types:

NodeFunction
Start / EndMark the beginning and end of the flow
ActionExecutes something: log, email, HTTP request, custom code, create/resolve task
ConditionIf/then branching based on data
SwitchMultiple branching (like a switch/case)
ForEachIterates over a collection: products, campaigns, keywords, search terms, ad groups, product ads, clusters
DelayWaits a period of time before continuing
FunctionInvokes a registered function in the system

Available collections for ForEach

The ForEach node can iterate over these entities from your account:

CollectionDescription
productsCatalog products
campaignsAdvertising campaigns
search-termsSearch terms
adgroupsAd groups
product-adsProduct ads
keywordsKeywords
clustersTargeting segments / clusters

Epinium Documentation