Bubble integration | Zervanor
← All connectors

Bubble

Also an agent tool
developer

Generic Data API CRUD + Workflow API trigger for a Bubble.io app: list/get/create/modify/replace/delete records on a user-defined {typename} object store, plus triggering a named API workflow. Per-instance base URL on the customer's own app domain (ADR-030 {config.*} interpolation), Bearer API-token auth. No push webhook — Bubble has no inbound webhook surface; the trigger is polling on list_things (Created Date, offset cursor). Bulk create (non-JSON text/plain body) is deferred for v1 (see compatibility.md bubble-05).

7 actions · 2 triggers

The Bubble integration lets you connect Bubble to your automations with 7 actions and 2 triggers — and every action is also a tool an AI agent can call. Examples: List Things, Get Thing, Create Thing, Modify Thing, Replace Thing. No blank-canvas wiring — connect it and use it in your workflows.

Every action below is also a tool an AI agent can call — the same pack powers your workflows and your agents.

Triggers 2

Events in Bubble that can start a workflow.

webhook

New record (polling)

Fires when a new record is detected by polling list_things, ordered by Created Date. Update/delete are not detectable this way (see compatibility.md bubble-08).

polling

New Bubble record (Data API)

Polls a data type's Data API list, ordered by Created Date descending, for new records. Detects creates only, not updates/deletes.

Actions 7

What Zervanor can do in Bubble.

Obj6

GET

List Things

List/search records of a data type, optionally filtered with constraints, paginated with cursor/limit, and ordered with sort_field (GET /obj/{typename})

GET

Get Thing

Retrieve a single record with all its fields by unique id (GET /obj/{typename}/{unique_id})

POST

Create Thing

Create a new record. Bubble auto-generates _id, Created Date, and Modified Date. Requires the type's "Create via API" privacy permission, bypassed by an admin token (POST /obj/{typename})

PATCH

Modify Thing

Update only the fields provided in the body; other fields are unchanged. Requires "Modify via API" (PATCH /obj/{typename}/{unique_id})

PUT

Replace Thing

Replace all editable fields; any field not given a value is reset to empty/default. _id and Created Date cannot be changed. Requires "Modify via API" (PUT /obj/{typename}/{unique_id})

DELETE

Delete Thing

Delete a record by id. Requires "Delete via API" (DELETE /obj/{typename}/{unique_id})

Wf1

POST

Trigger Workflow

Run a named server-side API workflow the app builder has published. Parameters are workflow-defined; access level (None required / User & admin / Admin only) is set per workflow by the builder (POST /wf/{workflow_name})

Automations using Bubble

Build your own automation with Bubble in the visual builder.

Frequently asked questions

What can I automate with Bubble?

7 actions are available — for example: List Things, Get Thing, Create Thing, Modify Thing, Replace Thing, and more.

Which Bubble events can start a workflow?

2 triggers — for example: New record (polling), New Bubble record (Data API).

Can Bubble be used as an AI agent tool?

Yes. Every Bubble action automatically becomes a tool an AI agent can call — the same pack powers both your workflows and your agents.

How is the Bubble integration modelled?

Bubble is modelled as a versioned connector pack, and the steps that need reasoning fall to first-party agents hosted in the same runtime as the workflows.