createGoogleSheet
Create a new Google Spreadsheet and populate it with CSV data.
mindstudio.createGoogleSheet({ title, text }) → Result
Create a new Google Spreadsheet and populate it with CSV data.
Parameters
title
string
RequiredTitle for the new spreadsheet
text
string
RequiredCSV data to populate the sheet with
connectionId
string
Google OAuth connection ID
Call from a method
import { mindstudio } from '@mindstudio-ai/agent'; const result = await mindstudio.createGoogleSheet({ title: /* ... */, text: /* ... */ });