Actions8
Overview
This node interacts with the Straker Verify API to manage API keys among other resources. Specifically, the Key - Delete operation deletes an existing API key by its ID. This is useful for revoking access or cleaning up unused keys in your Straker Verify account.
Typical use cases include:
- Automating the removal of API keys that are no longer needed.
- Managing API key lifecycle as part of a larger workflow for security compliance.
- Integrating key management into CI/CD pipelines or administrative dashboards.
Properties
| Name | Meaning |
|---|---|
| Key ID | The unique identifier of the API key to delete |
Output
The output JSON contains the response from the Straker Verify API after attempting to delete the specified API key. Typically, this will be a confirmation of success or details about the deletion result.
Example output structure:
{
"success": true
}
No binary data is produced by this operation.
Dependencies
- Requires an active connection to the Straker Verify API.
- Needs an API authentication token (API key) configured in the node credentials.
- The base URL for the API can be customized but defaults to
http://localhost:11001.
Troubleshooting
Common issues:
- Invalid or missing Key ID parameter will cause the request to fail.
- Network connectivity problems or incorrect API base URL may prevent successful API calls.
- Insufficient permissions associated with the API key credential can lead to authorization errors.
Error messages:
"The operation "delete" is not supported for resource "key"!"— indicates a misconfiguration of the operation or resource parameters.- HTTP error responses from the API (e.g., 404 if the key does not exist, 401 for unauthorized) will be surfaced as node errors.
Resolution tips:
- Ensure the Key ID is correct and corresponds to an existing API key.
- Verify the API key credential has sufficient rights to delete keys.
- Check network settings and API endpoint configuration.
Links and References
- Straker Verify API Documentation (example placeholder link)
- n8n Documentation on Creating Custom Nodes