latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-14409129967.7 KB

95679a9aa625

Task Automations

Create a Google Spreadsheet and write evidence rows into it

Create a Google Spreadsheet and write evidence rows into it in Betayum. Create, version, run, and inspect automated evidence collection workflows attached to compliance tasks.

post/v1/tasks/{taskId}/automations/{automationId}/google-sheets

Path parameters

taskIdstring required

Task ID

automationIdstring required

Automation ID

Request body

titlestring required

Title for the Google Spreadsheet

headersstring[]

Header row values

rowsstring[] required

Row data to write into the spreadsheet

Example request

{
  "title": "GCP IAM Evidence - 2026-07-12",
  "headers": [
    "Resource",
    "Status",
    "CollectedAt"
  ],
  "rows": [
    [
      "projects/my-project",
      "compliant",
      "2026-07-12T14:00:00Z"
    ]
  ]
}