GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation deletes a specific feature flag user list from a project in GitLab. It is useful for managing feature flags by removing user lists that are no longer needed or relevant. For example, a user can delete a feature flag user list associated with a project to clean up or update feature flag configurations.

Use Case Examples

  1. Deleting a feature flag user list from a project to remove outdated user targeting.
  2. Automating cleanup of feature flag user lists in CI/CD pipelines.

Properties

Name Meaning
Skip Authentication Option to skip authentication for the request.
Authentication Type of authentication used, default is GitLab API key.
baseUrl Base URL of the GitLab instance, default is https://gitlab.com.
Method HTTP method to use for the request, default is GET.
Path Parameters Parameters for the API path including project ID and feature flag user list internal ID.

Output

JSON

  • success - Indicates if the deletion was successful.
  • message - Response message from the API after deletion attempt.

Dependencies

  • GitLab API key credential

Troubleshooting

  • Ensure the project ID and feature flag user list internal ID are correctly provided; otherwise, the API call will fail.
  • Authentication errors may occur if the GitLab API key is missing or invalid; verify credentials.
  • Check that the base URL is correct for the GitLab instance being accessed.
  • HTTP method must be DELETE for this operation; using other methods may cause errors.

Links

Discussion