Actions34
- Activity Actions
- Deal Actions
- Funnel Actions
- Organization Actions
- Person Actions
- Product Actions
- Tag Actions
- User Actions
Overview
This node integrates with the Agendor CRM API to manage user data. Specifically, the "User" resource with the "Get" operation allows you to retrieve detailed information about a specific user by their numeric ID. This is useful in scenarios where you need to fetch user details for reporting, automation workflows, or syncing user data with other systems.
Practical examples:
- Fetching a user's profile information to personalize communications.
- Retrieving user details before assigning tasks or activities.
- Integrating user data into dashboards or analytics tools.
Properties
| Name | Meaning |
|---|---|
| User ID | The numeric ID of the user to retrieve. |
Output
The node outputs JSON data representing the user object retrieved from the Agendor API. This typically includes fields such as the user's name, email, role, and other relevant profile information as provided by the API.
No binary data output is involved in this operation.
Dependencies
- Requires an API authentication token credential for the Agendor CRM API.
- The node makes HTTP GET requests to the endpoint
/users/{userId}on the base URLhttps://api.agendor.com.br/v3. - Proper configuration of the API token credential in n8n is necessary for successful authentication.
Troubleshooting
Common issues:
- Invalid or missing User ID: Ensure the User ID is provided and is a valid numeric string.
- Authentication errors: Verify that the API token credential is correctly configured and has sufficient permissions.
- Network or API downtime: Check connectivity and Agendor API status.
Common error messages:
- 401 Unauthorized: Indicates invalid or missing API token. Resolve by updating the API token credential.
- 404 Not Found: The specified User ID does not exist. Confirm the User ID is correct.
- 400 Bad Request: Usually caused by malformed input parameters. Double-check the User ID format.
Links and References
- Agendor API Documentation (official API docs for further details on user endpoints)
- n8n Documentation (for general guidance on using credentials and HTTP request nodes)