GuidePlatformv1
Assembly Actions
Every CRUD operation against a target app.
Actions are what an automation does with data. Six CRUD operations plus Invoke for computing and generating data:
- Add — create a new record in the target app.
- Delete — remove a record by ID or criteria.
- Find — search by criteria, return matches.
- Get — retrieve one record by ID.
- Invoke — a catch-all for non-CRUD patterns (e.g. sending an email, geocoding, payment auth).
- List — fetch all records.
- Update — patch existing records with partial updates.
In this section
Add
Create a new record in the target app.
Delete
Remove a record by ID or criteria.
Find
Search by criteria, return matches.
Get
Retrieve one record by ID.
Invoke
A catch-all for non-CRUD patterns (e.g. sending an email, geocoding, payment auth).
List
Fetch all records.
Update
Patch existing records with partial updates.
Related docs
Last updated May 4, 2026