Actions89
- Direct API Actions
- CRM Actions
- Task Actions
- User Actions
- SPA Actions
- Activity Actions
- Automation Actions
- Document Generator Actions
- Data Storage Actions
- Chat Actions
Overview
The node integrates with the Bitrix24 platform, specifically supporting operations on various resources including Smart Process Automation (SPA). The "Uninstall SPA" operation allows users to remove or uninstall a Smart Process Automation entity from their Bitrix24 environment.
This node is beneficial in scenarios where automation workflows or custom processes created within Bitrix24 need to be programmatically removed or cleaned up. For example, an organization might automate the removal of outdated or deprecated SPAs as part of maintenance or deployment pipelines.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method used to authenticate with Bitrix24. Options: - OAuth2 (recommended for production) - Webhook (simpler but less secure) - API Key |
Output
- The output JSON contains the result of the uninstall operation performed on the SPA resource.
- In case of failure and if the node is configured to continue on error, the output will include an error object with:
error: The error message describing what went wrong.resource: The resource name involved ("spa" in this context).timestamp: The ISO timestamp when the error occurred.
- The node does not explicitly output binary data.
Dependencies
- Requires connection to Bitrix24 via one of the supported authentication methods (OAuth2, webhook URL, or API key).
- Uses Bitrix24 API endpoints internally to perform SPA-related operations.
- No additional external services beyond Bitrix24 are required.
- Proper credentials must be configured in n8n for the chosen authentication method.
Troubleshooting
Common Issues:
- Authentication failures due to incorrect or expired credentials.
- Insufficient permissions in Bitrix24 to uninstall SPA entities.
- Network connectivity issues preventing API calls.
- Attempting to uninstall a non-existent or already removed SPA.
Error Messages:
- Errors returned by Bitrix24 API will be surfaced in the node's output if "Continue On Fail" is enabled.
- Typical errors may include authorization errors, invalid SPA IDs, or API rate limits.
Resolution Tips:
- Verify that the API credentials are valid and have necessary scopes/permissions.
- Confirm the SPA entity targeted for uninstallation exists.
- Check network connectivity and Bitrix24 service status.
- Enable "Continue On Fail" to capture error details without stopping workflow execution.
Links and References
- Bitrix24 Official Documentation
- Bitrix24 REST API Reference
- OAuth2 Authentication Overview: https://oauth.net/2/
- n8n Documentation on Credentials and Authentication: https://docs.n8n.io/credentials/overview/