WibiClick icon

WibiClick

Interact with WibiClick API

Actions92

Overview

The node integrates with the WibiClick API to manage various resources such as users, notes, jobs, contacts, employees, estimates, invoices, line items, websites, WhatsApp messages, and more. Specifically for the User resource with the Reassign Activities operation, it allows reassigning activities from one user to another within the system.

This operation is useful in scenarios where a user leaves an organization or changes roles, and their assigned activities need to be transferred to another user to maintain workflow continuity. For example, if a project manager leaves, their tasks and notes can be reassigned to a new manager without losing any activity history.

Properties

Name Meaning
Old User ID The unique identifier of the user whose activities are currently assigned and will be reassigned.
New User ID The unique identifier of the user who will receive the reassigned activities.

These properties are required inputs when performing the "Reassign Activities" operation on the User resource.

Output

The output JSON contains the response from the WibiClick API after attempting to reassign activities. It typically includes success status and any relevant data or messages returned by the API.

Example output structure:

{
  "success": true,
  "message": "Activities reassigned successfully"
}

If the reassignment fails, the output will contain error information.

Dependencies

  • Requires an active connection to the WibiClick API.
  • Requires an API key credential for authentication with the WibiClick service.
  • The node uses HTTP requests to communicate with the WibiClick API endpoints.

Troubleshooting

  • Common Issues:

    • Invalid or missing API key credential will cause authentication failures.
    • Providing incorrect or non-existent user IDs for old or new users will result in errors.
    • Network connectivity issues may prevent successful API calls.
  • Error Messages:

    • Errors returned by the API will be propagated, often including messages like "User not found" or "Unauthorized".
    • If the node encounters an unexpected response, it throws an error indicating failure to reassign activities.
  • Resolution Tips:

    • Verify that the API key credential is correctly configured and has necessary permissions.
    • Double-check the user IDs provided to ensure they exist in the system.
    • Ensure network access to the WibiClick API endpoint is available.

Links and References


This summary focuses on the User resource's Reassign Activities operation as requested, based on static analysis of the provided source code and property definitions.

Discussion