Actions36
- Document Actions
- Project Actions
- Project Task Actions
- User Actions
- Company Actions
Overview
This node interacts with the awork API to retrieve user information by a specified user ID. It is useful in scenarios where you need to fetch detailed data about a particular user within your workflow automation, such as for user management, reporting, or integration with other systems.
Use Case Examples
- Retrieve a user's profile details by their unique ID to display in a dashboard.
- Fetch user information to synchronize with an external CRM system.
Properties
| Name | Meaning |
|---|---|
| User ID | The ID of the user to retrieve, used to specify which user's data to fetch. |
| Batching | Controls how input data is split into batches to throttle requests, including batch size and interval between batches. |
| Ignore SSL Issues (Insecure) | Whether to accept the response even if SSL certificate validation fails. |
| Proxy | HTTP proxy to use for the request, including optional authentication. |
| Timeout | Time in milliseconds to wait for the server response before aborting the request. |
Output
JSON
id- The unique identifier of the user.name- The full name of the user.email- The email address of the user.role- The role assigned to the user within the system.status- The current status of the user (e.g., active, inactive).createdAt- Timestamp when the user was created.updatedAt- Timestamp when the user information was last updated.
Dependencies
- Requires an API key credential for authenticating with the awork API.
Troubleshooting
- Ensure the provided User ID is correct and exists in the system to avoid 'User not found' errors.
- Check network connectivity and proxy settings if requests time out or fail to connect.
- If SSL errors occur, consider enabling 'Ignore SSL Issues' option cautiously.
- Verify that the API key credential is valid and has sufficient permissions to access user data.
Links
- awork API Documentation - Get User by ID - Official API documentation for retrieving a user by ID using the awork API.