Getting Google Form's response spreadsheet link for forms created with FormApp

Viewed 22

I can make Google Forms inside GAS, like so.

const form = FormApp.create(formTitle);
const formUrl = form.getEditUrl();

The created forms will have different contents and URLs depending on the run, and also different spreadsheets that will record the responses.

Is it possible to get the links to those spreadsheets with GAS, or does it have to be done manually each time by clicking the Create Spreadsheet button?

1 Answers
Related