From efdc28b1bd5547da7b320e4fb1950851e0714d2a Mon Sep 17 00:00:00 2001 From: lfelpi-google Date: Thu, 15 Aug 2024 16:09:32 -0400 Subject: [PATCH] fix: Update quickstart.gs for the tabs in Docs feature (#480) This is part of an ongoing effort to update Docs API guides/documentation for the tabs feature. --- docs/quickstart/quickstart.gs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstart/quickstart.gs b/docs/quickstart/quickstart.gs index ea514fc00..605cfe759 100644 --- a/docs/quickstart/quickstart.gs +++ b/docs/quickstart/quickstart.gs @@ -23,7 +23,7 @@ function printDocTitle() { const documentId = '195j9eDD3ccgjQRttHhJPymLJUCOUjs-jmwTrekvdjFE'; try { // Get the document using document id - const doc = Docs.Documents.get(documentId); + const doc = Docs.Documents.get({'includeTabsContent': true}, documentId); // Log the title of document. console.log('The title of the doc is: %s', doc.title); } catch (err) {