Masterify|
Automation Templates

make.com / n8n Workflow Templates

3 ready-to-use templates for connecting uploads, mastering, completion webhooks, and delivery automation. Download the starter JSON and copy request/response examples directly from the detailed guides.

The files provided are starter manifest JSONs, not one-click imports. Fill in your workspace connection details and credentials to quickly set up in make.com / n8n.

make.com

Google Drive → Master → Slack

Automatically creates a mastering job when a new audio file is uploaded to Drive, then sends the result link to Slack when the completion webhook arrives.

Solo creators / Small teams · Pro or higher

  1. 1Google Drive trigger
  2. 2HTTP POST /api/v1/master with webhook_url
  3. 3Webhook receive job.completed
  4. 4Slack message with download_url
curl -X POST https://api.masterify.net/api/v1/master \
  -H "Authorization: Bearer aim_live_xxx" \
  -F "[email protected]" \
  -F "platforms=spotify,apple_music" \
  -F "ai_service=suno" \
  -F "webhook_url=https://hook.make.com/your-webhook-id"

n8n

Airtable Queue → Master → Update Row

Reads rows with ready_to_master status from Airtable, performs mastering, then writes back the result URL and status.

Release managers / Indie labels · Pro or higher

  1. 1Airtable trigger or poll
  2. 2HTTP POST /api/v1/master
  3. 3Webhook or poll GET /api/v1/jobs/{job_id}
  4. 4Update Airtable status + asset URL
curl -X GET https://api.masterify.net/api/v1/jobs/{job_id} \
  -H "Authorization: Bearer aim_live_xxx"

make.com

Form Upload → Master → Client Email

Automatically masters files received through form uploads and sends download links to client emails upon completion.

Agencies / Freelancer delivery · Pro or higher

  1. 1Tally / Typeform upload trigger
  2. 2HTTP POST /api/v1/master
  3. 3Webhook receive job.completed
  4. 4Email final ZIP link to client
{
  "job_id": "550e8400-e29b-41d4-a716-446655440000",
  "status": "done",
  "download_url": "https://api.masterify.net/api/v1/jobs/.../download"
}