Siteboon icon

Siteboon

Interact with the Siteboon AI website builder API

Actions7

Overview

The node provides integration with the Siteboon AI website builder API, specifically allowing management of website pages. The "Page - Delete" operation enables users to delete a specific page from a selected site. This is useful in scenarios where you want to programmatically remove outdated or unwanted pages from your website without manually accessing the Siteboon platform.

Practical examples include:

  • Automating cleanup of test or temporary pages after deployment.
  • Removing pages that are no longer relevant based on business logic.
  • Integrating page deletion into larger workflows for website content management.

Properties

Name Meaning
Site Select the site from which the page will be deleted. You can choose a site either from a searchable list or by entering its UUID directly.
Page Select the page to delete. You can pick a page from a searchable list filtered by the selected site or specify the page ID manually.

Output

The node outputs JSON data representing the result of the delete operation. Typically, this would include confirmation of successful deletion or details about any error encountered. The exact structure depends on the API response but generally confirms whether the page was deleted.

No binary data output is expected from this operation.

Dependencies

  • Requires an API key credential for authenticating with the Siteboon API.
  • The node uses the base URL https://rbfdagomafltuzfmfmgk.supabase.co/functions/v1/api to send requests.
  • The node depends on internal methods to fetch lists of sites and pages for selection inputs.

Troubleshooting

  • Invalid Site or Page ID: If the provided site or page ID is incorrect or does not exist, the API will likely return an error. Ensure IDs are valid UUIDs (for sites) or correct page identifiers.
  • Authentication Errors: Missing or invalid API credentials will cause authentication failures. Verify that the API key is correctly configured.
  • Network Issues: Connectivity problems may prevent the node from reaching the API endpoint.
  • Permission Denied: The API user associated with the credentials might lack permissions to delete pages. Confirm appropriate access rights.
  • Error Messages: Common errors will be returned from the API and surfaced by the node. Review the error message for clues and verify input parameters.

Links and References

  • Siteboon AI Website Builder (general reference)
  • API documentation should be consulted for detailed information on the delete page endpoint (not provided here).

Discussion