수동 실행 트리거¶
사용자가 에디터에서 직접 실행 버튼을 클릭하거나, API를 호출하여 워크플로우를 시작합니다.
설정¶
| 항목 | 설명 |
|---|---|
| 테스트 데이터 | JSON 형식의 입력 데이터 |
테스트 데이터 예시¶
{
"customer_name": "홍길동",
"customer_email": "customer@example.com",
"question": "결제 수단을 변경하고 싶습니다."
}
테스트 데이터는 트리거 노드의 테스트 탭에서 설정합니다.
출력¶
{
"text_content": "",
"data_content": {
"customer_name": "홍길동",
"customer_email": "customer@example.com",
"question": "결제 수단을 변경하고 싶습니다."
}
}
사용자가 입력한 테스트 데이터가 data_content에 그대로 전달됩니다.
참조¶
{{ $('trigger').data_content.customer_name }} → "홍길동"
{{ $('trigger').data_content.question }} → "결제 수단을 변경하고 싶습니다."
활용 예시¶
일회성 작업¶
수동으로 데이터를 입력하고 처리하는 워크플로우:
API 연동¶
외부 시스템에서 API로 워크플로우를 호출:
curl -X POST https://api.w5w.ai/workflows/{id}/execute \
-H "Authorization: Bearer {token}" \
-H "Content-Type: application/json" \
-d '{"customer_name": "홍길동", "question": "..."}'
용도¶
- 개발 중 테스트 실행
- 일회성 작업 (데이터 마이그레이션, 보고서 생성)
- 외부 시스템에서 API로 호출

