Google Docs
GOOGLEDOCS_CREATE_FOOTER
Tool to create a new footer in a Google Document. Use when you need to add a footer, optionally specifying its type and the section it applies to.
Remote googledocs
Other tools also called GOOGLEDOCS_CREATE_FOOTER?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"type": {
"enum": [
"HEADER_FOOTER_TYPE_UNSPECIFIED",
"DEFAULT"
],
"type": "string",
"title": "Type",
"examples": [
"DEFAULT"
],
"description": "The type of footer to create."
},
"document_id": {
"type": "string",
"title": "Document Id",
"examples": [
"12345abcdef"
],
"description": "The ID of the document to create the footer in."
},
"section_break_location": {
"type": "object",
"title": "Location",
"default": null,
"nullable": true,
"properties": {
"index": {
"type": "integer",
"title": "Index",
"default": null,
"nullable": true,
"description": "The zero-based index, in UTF-16 code units, relative to the beginning of the segment."
},
"tabId": {
"type": "string",
"title": "Tab Id",
"default": null,
"nullable": true,
"description": "The tab that the location is in. When omitted, the request is applied to the first tab."
},
"segmentId": {
"type": "string",
"title": "Segment Id",
"default": null,
"nullable": true,
"description": "The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body."
}
},
"description": "The location of the SectionBreak immediately preceding the section whose SectionStyle this footer should belong to. If this is unset or refers to the first section break in the document, the footer applies to the document style.",
"additionalProperties": false
}
}
}