Pulse Account Action icon

Pulse Account Action

Account actions from Pulse API

Overview

This node enables managing account roles via the Pulse API, specifically allowing actions such as creating, retrieving, updating, and deleting account roles. The "Delete Account Role" operation removes a specified account role from the system by its unique identifier. This is useful in scenarios where user permissions or roles need to be cleaned up or revoked programmatically.

Practical example: An administrator automates the removal of obsolete or unused account roles to maintain security and organization within their system.

Properties

Name Meaning
Account Role ID * The unique identifier of the account role to delete

Output

The node outputs a JSON object representing the result of the delete operation. Typically, this will confirm whether the deletion was successful or provide relevant status information. No binary data output is involved.

Dependencies

  • Requires an API key credential for authenticating with the Pulse API.
  • The node depends on the Pulse API service being accessible and properly configured.
  • No additional environment variables are explicitly required beyond the API authentication.

Troubleshooting

  • Common issues:

    • Providing an invalid or non-existent Account Role ID will likely cause an error.
    • Network connectivity problems can prevent communication with the Pulse API.
    • Insufficient permissions associated with the API key may block deletion.
  • Error messages:

    • "The operation "deleteAccountRole" is not supported for resource "accountRole"!" — indicates a misconfiguration or unsupported operation selection.
    • Errors returned from the Pulse API typically include messages about invalid IDs or authorization failures.
  • Resolutions:

    • Verify that the Account Role ID is correct and exists.
    • Ensure the API key has sufficient permissions to delete account roles.
    • Check network connectivity and API endpoint availability.
    • Enable "Continue On Fail" if you want the workflow to proceed despite individual errors.

Links and References

  • Pulse API Documentation (for account role management) — consult the official API docs for detailed info on account role deletion endpoints and expected responses.

Discussion