AvantGuard - ConnectSecure icon

AvantGuard - ConnectSecure

AvantGuard - ConnectSecure

Actions223

Overview

This node operation deletes an integration credential by its unique identifier. It is useful in scenarios where you need to revoke or remove access credentials associated with a specific integration, for example, when an integration is no longer needed or if the credential has been compromised. Practical use cases include automating cleanup of outdated credentials or managing user-specific integrations programmatically.

Properties

Name Meaning
X USER ID The user identifier header sent with the request to specify which user's credential to delete. This is required.
Id The numeric identifier of the integration credential to be deleted. This is required.

Output

The output JSON typically contains the response from the API after attempting to delete the integration credential. This may include confirmation of deletion or error details if the operation failed. There is no indication that binary data is returned.

Dependencies

  • Requires an API key credential for authentication (referred generically as "an API key credential").
  • The base URL and headers are configured via node credentials.
  • Uses an OpenAPI-based client internally to perform the HTTP DELETE request.

Troubleshooting

  • Missing or invalid X USER ID: The operation requires a valid user ID header; ensure it is provided and correctly formatted.
  • Invalid or non-existent Id: If the specified credential ID does not exist, the API will likely return an error indicating the resource was not found.
  • Authentication errors: Ensure the API key credential is valid and has sufficient permissions to delete integration credentials.
  • Network or connectivity issues: Verify network access to the API endpoint configured in the node credentials.

Links and References

  • Refer to your integration platform's API documentation for details on deleting integration credentials.
  • Consult n8n documentation on how to configure API key credentials and set up HTTP request nodes.

Discussion