Get Build Workflow
clipform_get_workflowRetrieve a step-by-step build workflow for creating a specific form type. Returns the exact tool sequence, form settings, node configuration, scoring setup, and end screen config as a build recipe.
Does NOT return craft knowledge (question psychology, difficulty curves, narration style) - use clipform_get_guide for that.
Available types: quiz, survey, interview, testimonial, application, booking. Aliases also accepted: trivia → quiz, test → quiz, exam → quiz, feedback → survey, poll → survey, nps → survey, questionnaire → survey, case-study → interview, callout → interview, lead-gen → funnel, qualification → funnel, lead-magnet → funnel, story → testimonial, review → testimonial, job-application → application, admission → application, enrollment → application, grant → application, registration → booking, signup → booking, event → booking, rsvp → booking, workshop → booking. Quiz variants (optional): personality, comprehension, composition - returns the variant-specific workflow instead of the base quiz workflow.
Optional args by type:
quiz: topic, question_count (8)
quiz (variant: personality): topic, categories, question_count (8)
quiz (variant: comprehension): youtube_url, question_count (8), audience
interview: purpose, response_format (all), needs_consent (true)
survey: topic, anonymous (true)
funnel: outcomes, criteria, needs_contact (true)
testimonial: use_case
application: role
booking: event_name, event_type
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| role | No | What the application is for (application) | |
| type | Yes | Form type to get the build workflow for (accepts aliases like 'feedback' → survey) | |
| topic | No | Topic or theme (quiz, survey) | |
| context | Yes | Describe the user's underlying goal in one sentence - not the tool you're calling. | |
| purpose | No | What you're collecting (interview) | |
| variant | No | Quiz sub-variant. Only used when type is 'quiz'. Omit for a standard scored quiz. | |
| audience | No | Target audience (quiz variant: comprehension) | |
| criteria | No | Routing criteria (funnel) | |
| outcomes | No | Segments or recommendations (funnel) | |
| use_case | No | What stories to collect (testimonial) | |
| anonymous | No | Anonymous survey (survey) | |
| categories | No | Comma-separated outcome categories (quiz variant: personality) | |
| event_name | No | Event or offering name (booking) | |
| event_type | No | Type of event (booking) | |
| youtube_url | No | YouTube video URL (quiz variant: comprehension) | |
| needs_consent | No | Include consent statement (interview) | |
| needs_contact | No | Include contact capture (funnel) | |
| question_count | No | Number of questions, default 8 (quiz types) | |
| response_format | No | How respondents reply (interview) |