Actions35
- Secret Actions
- Workplace Actions
- Workplace User Actions
- Workplace Role Actions
- Activity Log Actions
- Project Actions
- Project Role Actions
- Project Member Actions
- Config Actions
- Config Log Actions
- Environment Actions
- Trusted IP Actions
- Integration Actions
- Auth Actions
- Share Actions
Overview
This node interacts with the Doppler API to manage integrations. Specifically, for the "Integration" resource and the "Get Options" operation, it retrieves available options for a specified integration by its slug. This is useful when you want to dynamically fetch configuration or selectable options related to an integration within your workflow.
Practical examples include:
- Fetching configurable parameters or settings for a third-party service integration before performing further actions.
- Dynamically populating dropdowns or selection lists in subsequent nodes based on the integration options retrieved.
Properties
| Name | Meaning |
|---|---|
| Integration Slug | The unique identifier (slug) of the integration for which to retrieve options. |
Output
The node outputs JSON data containing the options related to the specified integration. The exact structure depends on the API response from the Doppler service but generally includes key-value pairs or lists representing configurable options for that integration.
No binary data output is indicated.
Dependencies
- Requires an API authentication token credential to access the Doppler API.
- The base URL for requests is
https://api.doppler.com. - Proper network connectivity to the Doppler API endpoint is necessary.
Troubleshooting
Common issues:
- Invalid or missing integration slug will likely cause the API to return an error or empty result.
- Authentication failures if the API token is invalid or missing.
- Network errors if the Doppler API is unreachable.
Error messages:
- Unauthorized or 401 errors indicate problems with the API authentication token; ensure the credential is correctly configured.
- 404 Not Found may occur if the integration slug does not exist; verify the slug value.
- Timeout or connection errors suggest network issues; check connectivity and firewall settings.
Links and References
- Doppler API Documentation (for detailed API endpoints and responses)
- n8n documentation on HTTP Request Node for understanding API interaction basics