Zapier Integration
Connect SudoMock to 5,000+ apps with Zapier. No code required—just clicks.
5,000+ App Integrations
Connect Shopify, WooCommerce, Etsy, Google Sheets, Airtable, and thousands more
Setting Up Zapier
Use Zapier's Webhooks by Zapier action to call SudoMock API. Here's how:
Create a New Zap
Go to zapier.com and click "Create Zap". Choose your trigger app (e.g., Shopify, Google Sheets).
Add Webhooks Action
Search for "Webhooks by Zapier" as your action and select "Custom Request".
Configure the Request
Set up the webhook with these settings:
- Method:
POST - URL:
https://api.sudomock.com/api/v1/renders - Data Pass-Through: No
- Unflatten: Yes
Add Headers
Add these headers:
1X-API-KEY: sm_your_api_key_here2Content-Type: application/jsonSet Request Body
Use Zapier's field mapping to create the JSON body:
1{2 "mockup_uuid": "your-mockup-uuid",3 "smart_objects": [4 {5 "uuid": "your-smart-object-uuid",6 "asset": {7 "url": "{{design_url_from_trigger}}",8 "fit": "cover"9 }10 }11 ],12 "export_options": {13 "image_format": "webp",14 "image_size": 1920,15 "quality": 9516 }17}Dynamic Fields
{{design_url_from_trigger}} with Zapier's field picker to map the design URL from your trigger.Popular Zaps
Shopify Order → Mockup
When a new order comes in, automatically generate product mockups for the purchased items.
Google Sheets Row → Mockup
Add design URLs to a spreadsheet, get rendered mockup URLs back in the same row.
Airtable Record → Mockup
Perfect for design management workflows. Add a design, get mockups automatically.
Parsing the Response
SudoMock returns the rendered mockup URL in the response. Here's how to extract it in Zapier:
- Add a Formatter by Zapier action after the webhook
- Choose Utilities → Line-item to Text
- Or use Code by Zapier for more control:
1// Code by Zapier (JavaScript)2const response = JSON.parse(inputData.webhookResponse);3return {4 mockup_url: response.data.print_files[0].export_path5};Multi-Step Zaps
Combine SudoMock with other actions for powerful workflows:
1// Example: Order Processing Workflow21. Trigger: New Shopify Order32. Filter: Order contains custom design43. Action: Download design from order54. Action: Upload to cloud storage (S3/Cloudinary)65. Action: SudoMock Render76. Action: Send mockup to customer via email87. Action: Update order notes with mockup URLZapier Limits
Prefer More Control?
n8n offers self-hosting, unlimited executions, and more advanced features.