Actions54
- Blueprint Actions
- Process Actions
- Task Actions
- Form Field Actions
- Comment Actions
- User Actions
- Guest Actions
- Group Actions
- Search Actions
- ID Finder Actions
Overview
This node integrates with the Tallyfy workflow automation platform, specifically enabling management of groups within an organization. The "Delete Group" operation allows users to remove a group by specifying its unique Group ID. This is useful for maintaining an up-to-date set of groups, cleaning up obsolete or unused groups, and managing access control efficiently.
Practical example:
If your organization has a group that is no longer needed (e.g., a project team that disbanded), you can use this node operation to delete that group from Tallyfy automatically as part of a workflow, ensuring your group list stays current without manual intervention.
Properties
| Name | Meaning |
|---|---|
| Group ID | The unique identifier of the group to delete |
Output
The output JSON contains the response from the Tallyfy API after attempting to delete the specified group. Typically, this will be an empty object or confirmation message indicating successful deletion. If an error occurs, the output will contain an error message describing the issue.
No binary data is produced by this operation.
Dependencies
- Requires an API key credential for authenticating with the Tallyfy API.
- The node uses the base URL
https://go.tallyfy.com/apior a custom base URL if provided in credentials. - Requires the organization ID to construct API endpoints.
- The node makes HTTP DELETE requests to the Tallyfy API endpoint
/organizations/{organizationId}/groups/{groupId}.
Troubleshooting
Common issues:
- Invalid or missing Group ID: Ensure the Group ID provided exists and is correct.
- Authentication errors: Verify that the API key credential is valid and has sufficient permissions.
- Network or connectivity problems: Check internet connection and Tallyfy service status.
Error messages:
"404 Not Found": The specified Group ID does not exist. Confirm the ID is correct."401 Unauthorized"or"403 Forbidden": Authentication failed or insufficient permissions. Recheck API credentials.- Other HTTP errors: Review the error message returned by the API for details.
To resolve errors, verify input parameters, credentials, and network connectivity.
Links and References
- Tallyfy API Documentation (for detailed API endpoint info)
- Tallyfy Official Website