List Form Responses
List a form's responses.
External Documentation
To learn more, visit the Google Forms documentation.
Basic Parameters
Parameter | Description |
---|---|
Fields | A comma-separated list of the selected fields to return for an object in the response.Format: responses.responseId,responses.answers. |
Filter | Which form responses to return. |
Form ID | ID of the Form whose responses to list. |
Page Size | The maximum number of responses to return. The service may return fewer than this value. If unspecified or zero, at most 5000 responses are returned. |
Page Token | A page token returned by a previous list response. If this field is set, the form and the values of the filter must be the same as for the original request. |
Return All Pages | Automatically fetch all resources, page by page. |
Advanced Parameters
Parameter | Description |
---|---|
Delegated User Override | Perform the action on behalf of another user, overriding the delegated user defined in the connection.If not specified, the delegated user is the one provided in the connection.Has no effect when using an OAuth connection.NOTE: the connection details are not edited by this input. |
Example Output
{
"responses": [
{
"responseId": "ACYDBNj6YR11hn4FeGIDOJGHJd1ZIHczQu5KZJZLQPZ1VnYu5-qgCF9ns-ihRBsbVmShMyk",
"createTime": "2024-03-07T11:52:41.551Z",
"lastSubmittedTime": "2024-03-07T11:52:41.551844Z",
"answers": {
"6ac2904d": {
"questionId": "6ac2904d",
"textAnswers": {
"answers": [
{
"value": "a response"
}
]
}
}
}
}]
Workflow Library Example
List Form Responses with Google Forms and Send Results Via Email
Preview this Workflow on desktop