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, allowing users to manage various resources such as blueprints, processes, tasks, guests, and more. Specifically, for the Guest resource with the Delete operation, the node deletes a guest user from the Tallyfy organization by their email address.
This functionality is useful in scenarios where you need to programmatically remove guest users from your organization's workflows, for example:
- Automatically cleaning up guest accounts after project completion.
- Removing access for guests who no longer require it.
- Managing guest lifecycle as part of an automated onboarding/offboarding process.
Properties
| Name | Meaning |
|---|---|
| The email address of the guest to delete |
The node requires the guest's email to identify which guest to delete.
Output
The output JSON contains the response from the Tallyfy API after attempting to delete the guest. Typically, this will be an object indicating success or failure of the deletion request. If multiple input items are processed, the output is an array of such responses.
No binary data is output by this operation.
Example output structure (simplified):
{
"json": {
// API response confirming deletion or error details
}
}
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 configured in the credentials to target the correct Tallyfy organization.
Troubleshooting
Common issues:
- Providing an incorrect or non-existent guest email will result in an error or no action.
- Missing or invalid API credentials will cause authentication failures.
- Network connectivity issues can prevent successful API calls.
Error messages:
- Authentication errors indicate problems with the API key or permissions.
- "Guest not found" or similar errors mean the specified email does not match any guest.
- Rate limiting or server errors from Tallyfy may require retrying later.
Resolutions:
- Verify the guest email is correct and exists in the organization.
- Ensure API credentials are valid and have sufficient permissions.
- Check network connectivity and retry if transient errors occur.
Links and References
- Tallyfy API Documentation (for detailed API endpoints and responses)
- Tallyfy Official Website