Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Retrieve and review responses submitted to a Google Form.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-collect-form-responses3description: "Retrieve and review responses from a Google Form."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "productivity"9requires:10bins:11- gws12skills:13- gws-forms14---1516# Check Form Responses1718> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-forms`1920Retrieve and review responses from a Google Form.2122## Steps23241. List forms: `gws forms forms list` (if you don't have the form ID)252. Get form details: `gws forms forms get --params '{"formId": "FORM_ID"}'`263. Get responses: `gws forms forms responses list --params '{"formId": "FORM_ID"}' --format table`2728