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 - Update operation, it updates information about a guest in the Tallyfy organization by their email address. This is useful when you need to modify guest details like first name or last name after they have been created.
Practical scenarios include:
- Correcting or updating guest contact information.
- Keeping guest records current without needing to delete and recreate them.
- Automating guest data synchronization from other systems.
Properties
| Name | Meaning |
|---|---|
| The email address of the guest to update (required). | |
| First Name | The new first name of the guest (optional). |
| Last Name | The new last name of the guest (optional). |
Output
The node outputs the updated guest information as JSON. The structure corresponds to the guest object returned by the Tallyfy API after an update, typically including fields like email, first name, last name, and possibly other metadata related to the guest.
No binary data output is involved.
Example output JSON snippet:
{
"email": "guest@example.com",
"first_name": "UpdatedFirstName",
"last_name": "UpdatedLastName",
...
}
Dependencies
- Requires an API key credential for authenticating with the Tallyfy API.
- Needs the organization ID configured in the credentials.
- The base URL defaults to
https://go.tallyfy.com/apibut can be overridden in credentials.
Troubleshooting
Common issues:
- Providing an incorrect or non-existent guest email will result in an error because the API cannot find the guest to update.
- Missing required authentication credentials will cause authentication failures.
- Network connectivity issues may prevent successful API calls.
Error messages:
- Errors from the API typically include HTTP status codes and messages indicating the problem (e.g., 404 Not Found if the guest does not exist).
- If the node throws an error about missing parameters, ensure the "Email" property is set.
Resolutions:
- Verify the guest email exists in the Tallyfy organization before attempting an update.
- Confirm that the API key credential is valid and has appropriate permissions.
- Check network connectivity and proxy settings if applicable.
Links and References
- Tallyfy API Documentation (for detailed API endpoints and payloads)
- Tallyfy Official Website