ChatWoot icon

ChatWoot

Interact with ChatWoot API

Actions113

Overview

This node operation deletes a user from a specified account in the ChatWoot system. It is useful for managing account memberships by removing users who no longer need access or are no longer part of the team. For example, when an employee leaves a company, this operation can be used to revoke their access to the 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 delete from the account.

Output

The output JSON typically contains the response from the ChatWoot API confirming the deletion of the user. 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 with the ChatWoot API.
  • The node uses the base URL provided in the credentials to send requests.
  • The operation sends a DELETE request to the ChatWoot API endpoint responsible for managing account users.

Troubleshooting

  • Common issues:
    • Providing invalid or non-existent Account Id or User Id will result in errors.
    • Missing or incorrect API authentication credentials will cause authorization failures.
  • Error messages:
    • "User not found" or similar indicates the User Id does not exist in the specified account.
    • "Unauthorized" or "Authentication failed" suggests problems with the API key or credentials.
  • Resolution:
    • Verify that the Account Id and User Id are correct and correspond to existing entities.
    • Ensure the API key credential is valid and has sufficient permissions.

Links and References

Discussion