Publish and add responders on the form

This page describes how to perform these tasks involving forms:

  • Publish the form so that responders can access it
  • Share your form with responders

Before you begin

Do the following tasks before proceeding with the tasks on this page:

Publish the form so that responders can access it

You can publish an existing form with the forms.setPublishSettings method.

REST

Sample request body

{
  "publishSettings": {
    "isPublished": true,
    "isAcceptingResponses": true
  }
}

Share your form with responders

To add responders to a form so that they can open and respond to it, you can use the Drive permissions.create method.

REST

Sample request body

{
  "view": "published",
  "role": "reader",
  "type": "user",
  "emailAddress": "[email protected]"
}