Actions19
- Negócio Actions
- Empresa Actions
- Pessoa Actions
- Tarefa Actions
- Produto Actions
- Usuário Actions
- Sistema Actions
Overview
This node integrates with the Agendor CRM platform to perform various operations on different resources. Specifically, for the Usuário (User) resource with the Buscar (Search) operation, it allows you to search for users in Agendor by different criteria:
- By a specific user ID
- By user email
- List all users (with optional limit or return all)
This is useful when you want to retrieve user information from your Agendor CRM account to use in workflows such as syncing user data, validating user existence, or triggering actions based on user details.
Practical examples:
- Retrieve a user’s full profile by their unique ID to update related records.
- Search for a user by email to check if they exist before creating a new record.
- List all users to generate reports or export user data.
Properties
| Name | Meaning |
|---|---|
| Tipo de Busca | The type of search to perform. Options: "Por ID" (search by specific user ID), "Por E-mail" (search by user email), "Listar Todos" (list all users). |
| ID do Usuário | The unique user ID in Agendor. Required if searching by ID. |
| E-mail do Usuário | The user's email address. Required if searching by email. |
| Retornar Todos | Boolean flag indicating whether to return all results when listing all users. |
| Limite | Maximum number of users to return when listing all users and not returning all. Range: 1-100. |
Output
The node outputs JSON data representing the user(s) retrieved from Agendor. The structure depends on the search type:
- For searches by ID or email, the output is a single user object with detailed user fields.
- For listing all users, the output is an array of user objects, each containing user details.
No binary data output is produced by this node.
Dependencies
- Requires an API key credential for Agendor CRM configured in n8n.
- Uses Agendor's REST API endpoints under
/userspath. - No additional external dependencies beyond the Agendor API access.
Troubleshooting
Common issues:
- Invalid or missing API credentials will cause authentication errors.
- Searching by ID or email that does not exist returns empty results or errors.
- Requesting too many users without enabling "Retornar Todos" may limit results unexpectedly.
Error messages:
- Authentication failures: Check that the API key credential is correctly set up.
- Not found errors: Verify the user ID or email exists in Agendor.
- Rate limiting or API errors: Retry after some time or check API usage limits.
Links and References
- Agendor API Documentation (official API docs)
- n8n Documentation (for general node usage and credential setup)