Integrations/Activepieces
No-code

Create spreadsheets & documents with Activepieces

Activepieces is an open-source automation tool (a Zapier alternative). Use its built-in HTTP piece to POST your data to OpenOfficeAI from any trigger and get back a shareable spreadsheet URL — no custom piece required. Self-host it or use the cloud.

Activepieces — HTTP piece
// Piece: HTTP > Send Request
Method:  POST
URL:     https://openofficeai.com/api/v1/sheets
Headers:
  Authorization: Bearer YOUR_API_KEY
  Content-Type:  application/json
Body (JSON):
{
  "title": "{{trigger.title}}",
  "sheets": [{
    "rows": [
      ["Name", "Email"],
      ["{{trigger.name}}", "{{trigger.email}}"]
    ]
  }]
}

// Use {{step_1.body.url}} in the next step.

How to create a spreadsheet with Activepieces

  1. 1Add the HTTP "Send Request" piece after your trigger.
  2. 2Set POST, the URL, and the Authorization header.
  3. 3Map trigger data into the JSON body rows.
  4. 4Reference the response body.url in later steps.

Why use OpenOfficeAI with Activepieces

Frequently asked questions

Do I need a custom Activepieces piece?

No. The built-in HTTP "Send Request" piece handles it — set the method, URL, Authorization header, and JSON body, and read the response in the next step.

Can I self-host this?

Yes. Activepieces is open-source and self-hostable, so both the automation and your API key stay within your own infrastructure if that matters for compliance.

How do I use the returned URL?

Reference {{step_name.body.url}} in subsequent pieces — for example, a Slack or Gmail piece — to share the generated spreadsheet link.

Start creating documents with Activepieces

Free tier includes 500 API calls per month — no card required.

Related integrations