Skip to main content

List Form Responses

List a form's responses.

External Documentation

To learn more, visit the Google Forms documentation.

Basic Parameters

ParameterDescription
FieldsA comma-separated list of the selected fields to return for an object in the response.
Format: responses.responseId,responses.answers.
FilterWhich form responses to return.
Form IDID of the Form whose responses to list.
Page SizeThe 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 TokenA 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 PagesAutomatically fetch all resources, page by page.

Advanced Parameters

ParameterDescription
Delegated User OverridePerform 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

Workflow LibraryPreview this Workflow on desktop