Doppler icon

Doppler

Interact with the Doppler API.

Actions35

Overview

This node integrates with the Doppler API to perform various operations related to Doppler resources. Specifically, for the Auth resource with the Revoke operation, it allows revoking an authentication token. This is useful in scenarios where you want to invalidate a token, for example, when a user logs out or if a token is compromised and should no longer grant access.

Practical example: You have an API token that was used for accessing Doppler services, and you want to revoke it programmatically to ensure it cannot be used anymore.

Properties

Name Meaning
Token To Revoke The authentication token string that you want to revoke. This is a sensitive value (password type).

Output

The node outputs the JSON response from the Doppler API after attempting to revoke the token. Typically, this will confirm whether the revocation was successful or provide error details if it failed.

No binary data output is involved.

Dependencies

  • Requires an API key credential for authenticating with the Doppler API.
  • The node sends HTTP POST requests to https://api.doppler.com/v3/auth/revoke.
  • Ensure the Doppler API credentials are configured properly in n8n.

Troubleshooting

  • Invalid Token Error: If the token provided is invalid or already revoked, the API may return an error. Verify the token value is correct.
  • Authentication Failure: If the API key credential is missing or incorrect, the request will fail. Check your Doppler API credentials setup.
  • Network Issues: Connectivity problems can cause request failures. Confirm network access to api.doppler.com.
  • Empty Token: Providing an empty token will likely result in an error. Always supply a valid token string.

Links and References

Discussion