Setup Checklist
- Airtable base / table / attachment field 확인
- n8n HTTP Request node 인증 헤더 설정
- Webhook 수신 경로 또는 polling interval 정의
- done / failed 상태 컬럼 준비
n8n · Pro 이상
ready_to_master 상태를 트리거로 받아 job 생성, 상태 추적, 결과 URL 기록까지 한 플로우에서 닫을 수 있습니다.
Setup Checklist
Expected Outcome
Airtable trigger or poll
HTTP POST /api/v1/master
Webhook or poll GET /api/v1/jobs/{job_id}
Update Airtable status + asset URL
API Request
curl -X GET https://api.masterify.net/api/v1/jobs/{job_id} \
-H "Authorization: Bearer aim_live_xxx"Webhook / Response Example
{
"event": "job.failed",
"job_id": "550e8400-e29b-41d4-a716-446655440000",
"status": "failed",
"error_message": "Unsupported file format"
}Ops Notes
웹훅을 쓰면 n8n 대기 시간이 줄고 polling 비용이 사라집니다.
실패 분기에서 Airtable 상태를 failed로 남기고 재시도 전용 뷰를 두는 편이 운영이 쉽습니다.