ChatWoot icon

ChatWoot

Interact with ChatWoot API

Actions113

Overview

This node operation deletes a user from a specified account in the system. It is useful when you need to remove access or revoke permissions for a user associated with an account, such as when an employee leaves a company or a user no longer requires access to certain resources.

Practical examples include:

  • Removing a team member from a project management account.
  • Revoking access for a contractor after contract completion.
  • Cleaning up inactive users from an organization's account.

Properties

Name Meaning
Account Id The numeric ID of the account from which the user will be deleted.
User Id The ID of the user to be deleted from the account.

Output

The output JSON typically contains the response from the API confirming the deletion of the user from the account. This may include status information or confirmation messages. There is no indication that binary data is returned by this operation.

Dependencies

  • Requires an API key credential for authenticating requests to the ChatWoot API.
  • The base URL for the API must be configured in the node credentials.
  • The node uses HTTP requests with JSON content type headers.

Troubleshooting

  • Common issues:

    • Providing incorrect or non-existent Account Id or User Id will result in errors indicating the resource was not found.
    • Missing or invalid API authentication token will cause authorization failures.
    • Network connectivity problems can prevent the request from completing.
  • Error messages and resolutions:

    • "User not found" — Verify the User Id is correct and exists within the specified account.
    • "Account not found" — Confirm the Account Id is valid.
    • "Unauthorized" or "Authentication failed" — Check that the API key credential is correctly set up and has necessary permissions.
    • "Request timeout" — Ensure stable network connection and retry.

Links and References

Discussion