Actions13
Overview
The node interacts with the Budibase DB Public API, specifically providing operations to manage applications and database tables within Budibase. The "Unpublish Application" operation allows users to unpublish a specified application by its App ID. This is useful when you want to take an app offline or remove it from public availability without deleting it entirely.
Common scenarios include:
- Temporarily disabling an app for maintenance.
- Removing an app from public access while retaining its data and configuration.
- Managing app lifecycle programmatically as part of deployment workflows.
Example: A user can automate unpublishing an app after a scheduled event or before deploying a new version.
Properties
Name | Meaning |
---|---|
App ID | The unique identifier of the application to unpublish. |
Output
The node outputs JSON data representing the response from the Budibase API after attempting to unpublish the application. This typically includes status information about the unpublish action, such as success confirmation or error details.
No binary data output is involved in this operation.
Dependencies
- Requires an API key credential for authenticating with the Budibase DB Public API.
- The base URL for API requests is configured dynamically from the provided credentials (likely the Budibase domain).
- No other external dependencies are indicated.
Troubleshooting
- Invalid App ID: If the App ID is incorrect or does not exist, the API will likely return an error indicating the app was not found. Verify the App ID value.
- Authentication errors: Missing or invalid API credentials will cause authentication failures. Ensure the API key credential is correctly set up.
- Network issues: Connectivity problems to the Budibase server will result in request failures. Check network access and endpoint availability.
- API changes: If the Budibase API changes, some operations might fail unexpectedly. Review API documentation and update the node accordingly.
Links and References
- Budibase Documentation
- Budibase API Reference (for detailed API endpoints and payloads)