Actions and properties
Actions give life to the app. They save data, charge credit cards, sign the user up, send emails, connect to external services, show elements, etc.

Workflows and their respective actions belong in the Workflow tab. This is where you give Bubble instructions on what should happen in response to events.
Each workflow starts with an event (trigger), followed by one or more actions that tell Bubble what to do.
This section covers all of the actions in the core library and their respective parameters.
Action steps
Note: While workflows are designed as a linear sequence, the actual execution order can vary. Some actions run in the browser, others on the server, and some on both. When a workflow mixes these types, actions may not fire in the exact order they appear. You can read more about the order in which actions are triggered in the article section below.
Article section: The order in which actions are triggered
Actions run in the order they appear in the workflow, and each is assigned a step number based on its position in the sequence. This number serves two purposes: it gives you a visual reference for the action's position, and it lets you reference the output of a previous step using Result of step [...].

This number gives you a visual cue of the action's number, and also makes it possible to refer to a previous action for information.
Referring to data from previous steps
Many actions refer to a data source to perform their task. For example, the Make changes to the current user action references a thing in the database of type user. You can refer to the data from a previous action by using the data source Result of step [...].
In this example, step 1 writes changes to the current user in the database. Step 2 can then reference that same user using Result of step 1.
Action-specific properties
Email and notifications
Both
Actions related to sending emails and push notifications.
Custom actions
Both
Actions related to triggering/scheduling custom events and reacting to database changes.
In-app purchase actions
Mobile
Actions related to mobile in-app purchase actions (iOS and Android)
Last updated
Was this helpful?