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
make.com · Pro or higher
Receives file uploads from forms like Typeform or Tally, creates mastering jobs, and automatically sends ZIP links to clients upon completion.
Setup Checklist
Expected Outcome
Tally / Typeform upload trigger
HTTP POST /api/v1/master
Webhook receive job.completed
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.