Actions48
- Chat Actions
- Mensagem Actions
- Grupo Actions
- Perfil Actions
Overview
This node, named "Zappfy API," allows users to interact with the Zappfy platform via its API. Specifically, for the resource Perfil (Profile), it supports an operation to Atualizar Nome Do Perfil (Update Profile Name). This operation updates the name of a profile instance on the Zappfy platform.
Common scenarios where this node is beneficial include automating profile management tasks such as renaming profiles in bulk or integrating profile updates into larger workflows that manage user or system configurations dynamically.
For example, if you have multiple profile instances and want to rename them based on external data or events, this node can be used to programmatically update each profile's name without manual intervention.
Properties
| Name | Meaning |
|---|---|
| Nome Da Instância | The name of the profile instance to update. This identifies which profile will be renamed. |
| Nome | The new name to assign to the profile. |
Output
The node outputs a JSON array containing the response from the Zappfy API after attempting to update the profile name. The exact structure depends on the API response but typically includes confirmation of the update or details about the updated profile.
No binary data output is indicated by the source code.
Dependencies
- Requires an API key credential for authenticating with the Zappfy API.
- The base URL for API requests is
https://docs.zappfy.io/api-reference. - The node expects JSON responses and sends JSON payloads.
- Proper configuration of the API authentication credentials within n8n is necessary.
Troubleshooting
- Operation not supported error: If the node throws an error stating the operation is not supported, verify that the resource and operation names are correctly set to "profile-api" and "update-profile-name" respectively.
- Authentication errors: Ensure the API key or authentication token is valid and has sufficient permissions to update profile names.
- Invalid input errors: Both "Nome Da Instância" and "Nome" are required fields; missing or empty values will likely cause the API call to fail.
- API connectivity issues: Check network connectivity and that the base URL is reachable from the n8n environment.
Links and References
- Zappfy API Documentation (official API reference for further details on endpoints and payloads)