list_form_responses
Retrieve form responses by specifying the form ID, user email, and pagination details. Returns a structured list of responses with pagination info for efficient navigation.
Instructions
List a form's responses.
Args:
user_google_email (str): The user's Google email address. Required.
form_id (str): The ID of the form.
page_size (int): Maximum number of responses to return. Defaults to 10.
page_token (Optional[str]): Token for retrieving next page of results.
Returns:
str: List of responses with basic details and pagination info.Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| form_id | Yes | ||
| page_size | No | ||
| page_token | No | ||
| service | Yes | ||
| user_google_email | Yes |