Masterify|
Automation Templates

make.com / n8n 워크플로우 템플릿

업로드, 마스터링, 완료 웹훅, 전달 자동화를 바로 연결할 수 있는 기본 템플릿 3개입니다. starter JSON을 내려받고, 상세 가이드에서 요청/응답 예시를 바로 복사할 수 있습니다.

현재 제공 파일은 one-click import가 아니라 starter manifest JSON입니다. 워크스페이스별 연결 정보와 인증값을 채워 넣으면 make.com / n8n에서 빠르게 재구성할 수 있습니다.

make.com

Google Drive → Master → Slack

새 오디오 파일이 Drive에 올라오면 마스터링 작업을 만들고, 완료 웹훅이 오면 Slack으로 결과 링크를 보냅니다.

솔로 크리에이터 / 소규모 팀 · Pro 이상

  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

Airtable에서 ready_to_master 상태의 행을 읽고 마스터링 후 결과 URL과 상태를 다시 기록합니다.

릴리즈 매니저 / 인디 레이블 · Pro 이상

  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

폼 업로드로 받은 파일을 자동 마스터링하고, 완료 시 다운로드 링크를 클라이언트 이메일로 발송합니다.

대행사 / 프리랜서 납품 · Pro 이상

  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"
}