Bubble entegrasyonu | Zervanor
← Tüm konnektörler

Bubble

Aynı zamanda bir ajan aracı
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 eylemler · 2 tetikleyiciler

Bubble entegrasyonu — 7 aksiyon ve 2 tetikleyici ile Bubble'ı otomasyonlarına bağla; her aksiyon aynı zamanda bir AI agent aracı. Örnek: List Things, Get Thing, Create Thing, Modify Thing, Replace Thing. Boş bir tuvalde uğraşmadan — bağla ve workflow'larında kullan.

Aşağıdaki her eylem, bir AI ajanının da çağırabileceği bir araçtır — aynı pack hem iş akışlarınızı hem ajanlarınızı çalıştırır.

Tetikleyiciler 2

Bubble üzerinde bir iş akışını başlatabilen olaylar.

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.

Eylemler 7

Zervanor'un Bubble üzerinde yapabilecekleri.

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})

Bubble kullanan Çözüm Şablonları

Bubble ile kendi otomasyonunu görsel tasarımcıda kur.

Sıkça sorulan sorular

Bubble ile neler otomatikleştirebilirim?

7 aksiyon var — örneğin: List Things, Get Thing, Create Thing, Modify Thing, Replace Thing ve daha fazlası.

Hangi Bubble olayları bir workflow başlatabilir?

2 tetikleyici — örneğin: New record (polling), New Bubble record (Data API).

Bubble bir AI agent aracı olarak kullanılabilir mi?

Evet. Bubble'ın her aksiyonu otomatik olarak bir AI agent aracına dönüşür — aynı pack hem workflow'larını hem agent'larını besler.

Bubble entegrasyonu nasıl modellenir?

Bubble sürümlü bir connector pack olarak modellenir; muhakeme gerektiren adımlar workflow'larla aynı runtime'da barınan first-party agent'lara düşer.