Masterify

make.com · Pro or higher

A client delivery flow that automatically handles everything from form submission to delivery email

Receives file uploads from forms like Typeform or Tally, creates mastering jobs, and automatically sends ZIP links to clients upon completion.

Setup Checklist

  • Include file upload and email fields in the form
  • Connect make.com email module or SMTP
  • Create completion webhook URL
  • Prepare client email template

Expected Outcome

  • Convert freelancer delivery routines from semi-automatic to nearly fully automatic
  • Reduce missed uploads and download link delivery failures
  • Save operational time on recurring projects
1

Tally / Typeform upload trigger

2

HTTP POST /api/v1/master

3

Webhook receive job.completed

4

Email final ZIP link to client

API Request

{
  "job_id": "550e8400-e29b-41d4-a716-446655440000",
  "status": "done",
  "download_url": "https://api.masterify.net/api/v1/jobs/.../download"
}

Webhook / Response Example

{
  "event": "job.completed",
  "job_id": "550e8400-e29b-41d4-a716-446655440000",
  "status": "done",
  "platforms": ["spotify", "youtube"]
}

Ops Notes

Form upload files tend to expire quickly, so it's safer to pass them to the API immediately upon submission.

Simplify client emails by including only ZIP links or individual platform links (not both) to reduce support inquiries.