Create Sheet From Upload
Perform Create Sheet From Upload through Google Sheets.
google_sheets_create_from_uploadwritegoogle_sheets
Inputs
- Google Sheets Account Id
google_sheets_account_idselectdynamic optionsOptional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
- Document Id
document_idexpressionrequiredRequired literal value or workflow expression.
- Title
titleexpressionOptional literal value or workflow expression.
- Sheet Title
sheet_titleexpressionOptional literal value or workflow expression.
Default:
"Sheet1" - Source Format
source_formatselectOptional selected identifier or value.
Default:
"auto"Options: Auto Detect ("auto"), CSV ("csv"), Excel (.xlsx) ("xlsx")
- Write Enabled
write_enabledbooleanOptional true-or-false value.
Default:
false
Outputs
successSuccesssubmittedSubmittedwrite_skippedWrite Skippedskip_reasonSkip Reasonspreadsheet_idSpreadsheet Idspreadsheet_urlSpreadsheet Urlsheet_titleSheet Titlerow_countRow Countcolumn_countColumn Countdrive_folder_idDrive Folder IderrorErrorerror_messageError Message
Output schema completeness: best_effort_declared
Safety
- External effect
- write
- Confirmation recommended
- No
- Retry safe
- No
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"document_id"
],
"properties": {
"title": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"document_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"sheet_title": {
"default": "Sheet1",
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"source_format": {
"enum": [
"auto",
"csv",
"xlsx"
],
"type": "string",
"default": "auto",
"description": "Optional selected identifier or value.",
"x-workflow-field-type": "select"
},
"write_enabled": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"google_sheets_account_id": {
"type": "string",
"description": "Optional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.",
"x-dynamic-options": true,
"x-workflow-field-type": "select"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {},
"row_count": {},
"submitted": {},
"sheet_title": {},
"skip_reason": {},
"column_count": {},
"error_message": {},
"write_skipped": {},
"spreadsheet_id": {},
"drive_folder_id": {},
"spreadsheet_url": {}
},
"additionalProperties": true
}