get_form_response
Retrieve a specific Google Form response by its unique ID, getting all answers mapped to question IDs. Useful for examining a single submission after listing responses.
Instructions
Fetch a single submitted response to a Google Form, including all answers keyed by question ID.
Use this when you already know the specific responseId (e.g., from a
prior list_form_responses call or from a webhook/trigger). For bulk
listing of all responses on a form, use list_form_responses. To look up
which questionId maps to which question prompt, call get_form and
read the item list.
Requires OAuth scope: https://www.googleapis.com/auth/forms.responses.readonly.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_google_email | Yes | The user's Google email address. Required. | |
| form_id | Yes | The form ID — the string after `/forms/d/` in the edit URL. | |
| response_id | Yes | The unique response ID returned by `list_form_responses` (field `responseId`). Opaque string assigned by Google at submit time; not the same as a row number. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |