class ContentService method .createTextOutput()

ContentService is the Apps Script service.

.createTextOutput() is the method name you will see after a dot in your code.

What it does

Builds a text response for a web app request.

Why it's used

  • Return plain text or JSON from a web app doGet.
  • Send a simple API response from Apps Script.

Common errors

  • Forgetting parentheses on createTextOutput. Write ContentService.createTextOutput(), not ContentService.createTextOutput or createTextOutput by itself.
  • Skipping dots between chained calls. Each step needs a dot, like ContentService.createTextOutput().
  • Adding spaces where they do not belong. Write ContentService.createTextOutput(), not ContentService .createTextOutput(), ContentService.createTextOutput (), or ContentService . createTextOutput().
  • Wrong capitalization. Use ContentService and createTextOutput, not contentservice or createtextoutput.

Explore

Related methods

  • .setMimeType()

    Sets the content type of a web app response, like JSON or XML.

Better Sheets tutorials

Add NPS to Your Google Site

Add NPS to Your Google Site

Create buttons on your Google Site to get an NPS, or Net Promoter Score ...
Automate Form Response to Confirmation Email

Automate Form Response to Confirmation Email

Create an email automatically when someone fills out a google form. incl...
Better Email Form on Google Sites

Better Email Form on Google Sites

Submit email from a Google Sites to Google Sheets with this easy to embe...
Build a Book Recommender with AI in Google Sheets

Build a Book Recommender with AI in Google Sheets

Create an Email form that sends a few books to AI and gets back a book r...
Build a Job Status Checker API in 15 Minutes

Build a Job Status Checker API in 15 Minutes

The video tutorial demonstrates how to leverage Google Sheets and Google...
Build a License Key Generator and API in 20 Minutes

Build a License Key Generator and API in 20 Minutes

How to leverage Apps Script to create an API in less than 20 minutes. Cr...
Build Your Own Net Promoter Score (NPS) Survey on a Web Site

Build Your Own Net Promoter Score (NPS) Survey on a Web Site

Create an embeddable NPS system on a web page.
Capture Emails from Website Form to a Google Sheet (Without Zapier)

Capture Emails from Website Form to a Google Sheet (Without Zapier)

Embed a little HTML into your site to capture Emails straight to a Googl...
Convert Google Sheets into a REST API

Convert Google Sheets into a REST API

How to use Google Sheets as a database by turning it into a REST API wit...
Create a Tracking Number Fetcher with Google Sheets and Google Sites

Create a Tracking Number Fetcher with Google Sheets and Google Sites

Build a tracking number google site with Google Sheets as a backend.
Create a Vote Button from Google Sites to Google Sheets

Create a Vote Button from Google Sites to Google Sheets

Connect your published Google Site to Google Sheets with Apps Script and...
Embed a Headline in a Website from Google Sheets

Embed a Headline in a Website from Google Sheets

One of the most requested videos, Ever. How to put data, a number, some ...
Embed a Number in a Website from a Google Sheet

Embed a Number in a Website from a Google Sheet

Ever wanted to display some data from a google sheet on your site? Witho...
Embed Email Form and Name Form into Website to Google Sheets

Embed Email Form and Name Form into Website to Google Sheets

Add names to the Email2Sheet apps script and code.
Embed Quote and Author to Daily Quote Website

Embed Quote and Author to Daily Quote Website

Step by step tutorial to update random quote site to show both Quote and...
How to Power Testimonials with Google Forms and Sheets

How to Power Testimonials with Google Forms and Sheets

I show you how I use a Google Form and a Google Sheet to power the testi...
How to Trigger Macros Daily

How to Trigger Macros Daily

Automate your apps script and macros you can record.
I Created an Automatic Emailer

I Created an Automatic Emailer

While creating SheetOps, a new product, I came up with this idea of an a...
Quickly Build a Daily Random Motivational Quote Website

Quickly Build a Daily Random Motivational Quote Website

Build a website from scratch using a little bit of Google Sheets as the ...