Back to Templates
Anyone who wants to automatically aggregate their invoices or receipts. Main beneficiaries: small business owners and freelancers.
{
"name": "getInvoicesAndReceiptsFromEmails",
"description": "Finds and uploads to Google Drive all receipts and invoices from emails within a specified date range.",
"parameters": {
"type": "object",
"properties": {
"startDate": {
"type": "string",
"format": "date-time",
"description": "The start date of the range to search for emails. Must be in ISO 8601 format."
},
"endDate": {
"type": "string",
"format": "date-time",
"description": "The end date of the range to search for emails. Must be in ISO 8601 format."
},
"sendEmail": {
"type": "boolean",
"description": "Indicates whether to send an email with all receipts and invoices after processing. Must be true or false."
}
},
"required": [
"startDate",
"endDate"
]
}
}
Example body:
{
"startDate": "2025-03-01T00:00:00Z",
"endDate": "2025-04-01T00:00:00Z",
"sendEmail": true
}
You can trigger the workflow with an AI chat that supports tool use, such as BrowseWiz. For setup instructions, read the blog post.