PICTIFY
Make (Integromat)

Make (Integromat)
+ Pictify

Build advanced visual automation workflows with Make scenarios.

Automation

About Integration

Make (formerly Integromat) provides powerful visual automation with advanced features like iterators, routers, and complex data mapping. Perfect for sophisticated image generation workflows that require conditional logic or multi-branch processing.

Key Capabilities

Visual scenario builder

Advanced data mapping

Error handling

Scheduled operations

Common Use Cases

Batch generate images from spreadsheets

Multi-variant A/B test images

Complex conditional image generation

Integration Guide

15 minutes

Prerequisites

  • A Pictify account with an API key
  • A Make account
  • A template created in Pictify
1

Create a New Scenario

Log into Make and click "Create a new scenario". This will be your automation workflow.

2

Add a Trigger Module

Click the "+" button and add your trigger. For example, use Google Sheets "Watch Rows" to trigger when new data is added.

!

Make's iterator module is perfect for batch processing multiple rows at once.

3

Add HTTP Module

Click "+" after your trigger and search for "HTTP". Select "Make a request" to call the Pictify API.

4

Configure HTTP Request

Set up the HTTP module to call Pictify's render endpoint with your template and variables.

Code
URL: https://api.pictify.io/v1/render
Method: POST

Headers:
- Authorization: Bearer YOUR_API_KEY
- Content-Type: application/json

Body type: Raw
Content type: JSON (application/json)

Request content:
{
  "templateId": "your-template-id",
  "variables": {
    "title": "{{1.title}}",
    "description": "{{1.description}}",
    "price": "{{1.price}}"
  },
  "format": "png",
  "width": 1200,
  "height": 630
}
!

Use Make's variable picker (the small icon) to map data from previous modules.

5

Parse the JSON Response

Add a "JSON > Parse JSON" module after the HTTP module to extract the image URL from Pictify's response.

Code
// Pictify returns:
{
  "success": true,
  "imageUrl": "https://cdn.pictify.io/renders/xyz789.png",
  "width": 1200,
  "height": 630
}

// Map the response body to the JSON module's "JSON string" field
6

Use the Generated Image

Add destination modules to use your image. Save to Google Drive, update Airtable, post to social media, or send notifications.

!

Use a Router module to send the image to multiple destinations simultaneously.

7

Enable Scheduling (Optional)

Click the clock icon on your trigger to run the scenario on a schedule—every hour, daily, or when data changes.

!

Start with manual runs while testing, then enable scheduling once everything works.

Ready to build with Make (Integromat)?

Get your API key in seconds and start generating images programmatically.

Related Integrations