Description
n8n-nodes-sudomock
n8n community node for the SudoMock API. Integrate mockup rendering into your n8n workflows for Print-on-Demand automation.
SudoMock | Documentation | API Reference
Features
Account Operations
- Get Account Info: Retrieve account details, subscription plan, and usage statistics
- Upload PSD: Upload PSD templates from a URL
- List Mockups: List all your uploaded mockup templates with filtering and pagination
- Get Mockup: Get detailed information about a specific mockup template
- Update Mockup: Update the name of a mockup template
- Delete Mockup: Delete a specific mockup template
- Render Mockup: Generate mockups by combining templates with your designs. Optionally run asynchronously with the Run Asynchronously toggle, which returns a
job_idto track with Get Job. - Render Video: Turn a mockup (or an existing image URL) into a short product video (always asynchronous). Pick a duration valid for the model, optional audio/motion, an optional one-off webhook, and optionally Wait for Completion to return the finished clip.
- Get Job: Get the status and result of an async render, upload, or video job by its
jobid. Terminal statuses aresucceeded,failed, andcancelled(pending jobs reportqueued). On success it surfacesresulturl(render/video) ormockup_uuid(upload). Optionally Wait for Completion to poll until the job finishes. - List Jobs: List your async render, upload, and video jobs (keyset paginated, with optional
kindand Mockup UUID filters). - Webhook: List Endpoints
- Webhook: Get Endpoint
- Webhook: Create Endpoint (set an optional description and choose any of the six canonical events, or leave empty for all)
- Webhook: Update Endpoint
- Webhook: Delete Endpoint
- Webhook: Rotate Secret
- Webhook: Send Test
- Webhook: List Deliveries
- Webhook: Replay Delivery
- Webhook: Replay Failed Deliveries
- Webhook: Events Feed (recent deliveries across all of your endpoints)
Mockup Management
Rendering
Async Jobs
Webhooks
Manage webhook endpoints that receive a signed HTTPS request the moment a job finishes:
Canonical events: render.succeeded, render.failed, upload.succeeded, video.succeeded, video.failed, webhook.test. Deliveries are HMAC-signed; see https://sudomock.com/docs/api/webhooks for the current signature header and verification details.
Installation
Via n8n UI
In n8n, go to Settings → Community Nodes → Install and enter:
n8n-nodes-sudomock
Manual Installation
cd ~/.n8n/nodes
npm install n8n-nodes-sudomock
Restart n8n after installation.
Setup
1. Get Your API Key
1. Sign up at SudoMock
2. Go to Dashboard → API Keys
3. Create a new API key (starts with sm_)
2. Add Credentials in n8n
1. Create a new SudoMock node
2. Click on Credentials → Create New
3. Enter your SudoMock API Key
4. Save and test the connection
Operations
Get Account Info
Retrieve your account information, subscription details, and credit usage.
Output:
Example Output:
{
"success": true,
"data": {
"account": {
"uuid": "user-123",
"email": "user@example.com",
"name": "John Doe"
},
"subscription": {
"plan": { "name": "Pro", "tier": "pro" },
"status": "active"
},
"usage": {
"creditsusedthis_month": 250,
"credits_limit": 1000,
"credits_remaining": 750
}
}
}
—
Upload PSD
Upload a PSD template from a public URL.
Parameters:
Example:
PSD URL: https://storage.example.com/mockup.psd
Name: T-Shirt Mockup Front
Output:
—
List Mockups
List all your uploaded mockup templates with optional filtering and pagination.
Parameters:
– Filter by Name: Exact name match
– Created After: Date filter
– Created Before: Date filter
– Sort By: createdat, updatedat, name
– Sort Order: asc or desc
Example:
Limit: 20
Sort By: Created At
Sort Order: Descending
Output:
Each mockup as a separate item with full details (UUID, name, smart objects, thumbnails, etc.)
—
Get Mockup
Retrieve detailed information about a specific mockup template.
Parameters:
Example:
Mockup UUID: c315f78f-d2c7-4541-b240-a9372842de94
Output:
Complete mockup details including all smart objects, thumbnails, and metadata.
—
Update Mockup
Update the name of a mockup template.
Parameters:
Example:
Mockup UUID: c315f78f-d2c7-4541-b240-a9372842de94
New Name: Updated T-Shirt Mockup
Output:
Updated mockup details with the new name.
—
Render Mockup
Generate a mockup by filling smart objects with your designs.
Parameters:
– Smart Object UUID
– Design URL (PNG, JPG, WebP)
– Fit Mode: fill, contain, or cover (recommended)
– Additional Options (optional):
– Rotation: -360 to 360 degrees
– Color Overlay: Hex color code
– Color Blend Mode: Various blend modes
– Brightness: -150 to 150
– Contrast: -100 to 100
– Opacity: 0-100
– Image Format: WebP (recommended), PNG, or JPEG
– Image Size: Width in pixels (100-10000, default 2048)
– Quality: 1-100 for JPG/WebP
– Export Label: Custom label for file naming
Example:
Mockup UUID: abc123-def456
Smart Object 1:
- UUID: so-uuid-001
- Design URL: https://cdn.example.com/design.png
- Fit Mode: Cover
- Brightness: 10
- Contrast: 5Export Options:
- Format: WebP
- Size: 1920
- Quality: 95
Output:
{
"success": true,
"renderedImageUrl": "https://cdn.sudomock.com/renders/abc123.webp",
"allRenderedUrls": [
"https://cdn.sudomock.com/renders/abc123.webp"
],
"data": {
"print_files": [...]
}
}
—
Delete Mockup
Delete a specific mockup template.
Parameters:
Example:
Mockup UUID: c315f78f-d2c7-4541-b240-a9372842de94
Output:
Deletion confirmation
—
Render Video
Turn a mockup (or an existing image URL) into a short product video. Always asynchronous: returns a job_id you can track with Get Job.
Parameters:
Render Mockup (render a mockup with your designs first) or Animate Image URL (animate a public image directly).png, .jpg, .jpeg, .webp, .gif, .avif) – Duration (Seconds): clip length (default 4; must be an allowed duration for the chosen model — the default model veo-3.1-fast allows 4, 6, or 8; max 15)
– Audio: include a generated audio track (default false; may cost extra credits depending on model)
– Motion: ambient (default) or showcase
– Advanced Model: optional override pinning a roster model (veo-3.1-fast, kling-v3-pro, kling-2.6-pro, seedance-2.0, wan-2.5); leave empty to auto-pick by plan tier
Output:
The 202 acknowledgement (jobid, kind, status, statusurl, estimatedcredits, …), or the finished job (with resulturl / resultUrl) when Wait for Completion is on.
—
Get Job
Track an asynchronous render, upload, or video job by its job_id.
Parameters:
job_id from an async render, upload, or video requestsucceeded, failed, cancelled)Output:
The job object. On success it surfaces resulturl / resultUrl (render/video) or mockupuuid / resultMockupUuid (upload), plus credits_charged and payg when applicable.
—
List Jobs
List your async render, upload, and video jobs (newest first, keyset paginated).
Parameters (all optional, under Filters):
render, upload, or videonext_cursor from a previous response for paginationOutput:
{ jobs: [...], next_cursor }.
> Note: Bulk “delete all mockups” is intentionally not exposed — the BE gates DELETE /mockups/all to dashboard (Bearer/JWT) auth only, so it is not callable with an API key. Delete mockups individually with Delete Mockup, or use the SudoMock dashboard.
—
Webhook Operations
Manage webhook endpoints and their deliveries. See the Webhooks feature list above for the full operation set and the canonical event types.
Common parameters:
—
Example Workflows
Ready-to-use n8n workflows are available in the examples/ folder:
1. Complete API Test Workflow
File: examples/complete-test-workflow.json
Tests the core mockup operations in sequence:
Perfect for verifying your setup and understanding the complete workflow.
2. Rate Limit Handling Workflow
File: examples/rate-limit-test-workflow.json
Demonstrates proper rate limit error handling with automatic retry logic:
3. Sequential Batch Render Workflow
File: examples/batch-render-workflow.json
Demonstrates the power of n8n workflows with sequential batch processing:
Perfect for understanding batch processing and workflow automation.
Quick Start with Examples
1. Import a workflow:
n8n UI → Workflows → Import from File → Select workflow JSON
2. Configure credentials:
Click any SudoMock node → Credentials → Select your API key
3. Execute:
Click "Execute Workflow" button
See examples/README.md for detailed instructions, customization options, and troubleshooting.
—
Usage Examples
Example 1: Complete Mockup Workflow
1. [HTTP Request]
→ Download PSD from URL2. [SudoMock: Upload PSD]
→ Upload template
→ Extract: mockupUuid, smartObjectUuid
3. [SudoMock: Render Mockup]
→ Use extracted UUIDs
→ Add design URL
→ Get: renderedImageUrl
4. [Etsy/Shopify Node]
→ Create product listing
→ Use rendered mockup image
Example 2: Batch Process Designs
1. [Airtable Trigger]
→ Get list of designs to process2. [SudoMock: List Mockups]
→ Get available templates
3. [Loop Over Designs]
→ [SudoMock: Render Mockup]
→ Generate mockup for each design
4. [Store Results]
→ Save rendered URLs to database
Example 3: Account Monitoring
1. [Schedule Trigger]
→ Run daily at 9 AM2. [SudoMock: Get Account Info]
→ Check credit usage
3. [IF Node]
→ If credits < 100
4. [Send Email/Slack]
→ Alert about low credits
Rate Limits
Request Rate Limits
All authenticated users have a base rate limit of 1000 requests per minute with burst capacity of 1500 requests.
Unauthenticated requests (IP-based): 30 requests per minute
Concurrent Request Limits (Plan-Based)
| Plan | Concurrent Renders | Concurrent Uploads |
|——|——————-|——————–|
| Free | 1 | 1 |
| Starter | 3 | 2 |
| Pro | 10 | 5 |
| Scale | 25 | 10 |
Rate Limit Error Handling
The node automatically detects and handles two types of rate limit errors:
#### 1. Request Rate Limit Exceeded (1000 RPM)
Error Output:
{
"error": "Rate limit exceeded (1000 requests/minute). Please retry after 42 seconds.",
"operation": "render",
"statusCode": 429,
"retryAfter": 42,
"errorType": "ratelimitexceeded",
"errorDetails": {
"type": "ratelimitexceeded",
"limit": 1000,
"remaining": 0
}
}
#### 2. Concurrent Limit Exceeded (Plan-Based)
Error Output:
{
"error": "Concurrent render limit reached (11/10). Please wait 5 seconds and try again.",
"operation": "render",
"statusCode": 429,
"retryAfter": 5,
"errorType": "concurrentlimitexceeded",
"errorDetails": {
"type": "concurrentlimitexceeded",
"resource": "concurrent-render",
"limit": 10,
"current": 11
}
}
Best Practices
1. Enable “Continue On Fail” in n8n node settings to capture rate limit errors without stopping the workflow
2. Implement retry logic using the retryAfter value from error output
3. Monitor errorType to distinguish between request rate limits and concurrent limits
4. Use n8n’s “Wait” node with {{$json.retryAfter}} seconds before retrying
Example: Retry Logic Workflow
[SudoMock Render] (Continue On Fail: ON)
→ [IF: Check statusCode]
→ If 429: [Wait: {{$json.retryAfter}} seconds]
→ [SudoMock Render Again]
→ Else: Continue
Error Handling
All operations support the Continue On Fail option in n8n. When enabled:
Example Error Output:
{
"error": "Rate limit exceeded. Retry after 42 seconds.",
"operation": "render"
}
Development
Setup
Clone repository
git clone https://github.com/sudomock/n8n-nodes-sudomock.git
cd n8n-nodes-sudomockInstall dependencies
pnpm installBuild
pnpm buildDevelopment (watch mode)
pnpm dev
Testing Locally
Link package globally
npm linkLink in n8n's custom nodes
cd ~/.n8n/custom
npm link n8n-nodes-sudomockStart n8n
n8n start
Access n8n at http://localhost:5678 and search for “SudoMock” in the nodes panel.
Build Commands
Build TypeScript and icons
pnpm buildFormat code
pnpm formatLint code
pnpm lintFix linting issues
pnpm lintfix
Resources
License
MIT
Support
—
Made with ❤️ for the n8n community