bannerify

Bannerify node for generating images and PDFs from no-code workflows.

Package Information

Downloads: 1 weekly / 270 monthly
Latest Version: 0.1.1

Documentation

n8n-nodes-bannerify

Generate Bannerify images and PDFs from n8n workflows.

Operations

  • Create Image: generates a hosted PNG, JPEG, or WebP URL from a Bannerify template.
  • Create PDF: generates a hosted PDF URL from a Bannerify template.

Both operations are built for no-code workflows: choose a template, map workflow data into the template fields, then pass the returned URL to the next n8n node.

Install

Install n8n-nodes-bannerify from the n8n community nodes screen.

Connect

Create a project key in Bannerify, paste it into the Bannerify credential in n8n, then choose templates and map workflow data from inside n8n.

Modifications JSON

Use the object shorthand:

{
  "headline": "Summer sale",
  "photo": { "src": "https://example.com/photo.png" }
}

Or the advanced array format:

[
  { "name": "headline", "text": "Summer sale" },
  { "name": "photo", "src": "https://example.com/photo.png" }
]

Use the returned URL in the next node in your workflow.

Discussion