GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation deletes a shared group from a specified group in GitLab using the GitLab API. It is useful for managing group sharing permissions by removing access of a shared group from a parent group. For example, an administrator can use this operation to revoke sharing privileges between groups in a GitLab instance.

Use Case Examples

  1. Deleting a shared group from a parent group to restrict access.
  2. Managing group sharing settings programmatically via GitLab API.

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 the group ID and the shared group ID to delete.

Output

JSON

  • statusCode - HTTP status code of the API response indicating success or failure.
  • body - Response body from the API call, typically empty for delete operations.

Dependencies

  • GitLab API key credential for authentication

Troubleshooting

  • Ensure the group ID and shared group ID are correct and exist in GitLab.
  • Verify that the API key has sufficient permissions to delete shared groups.
  • Common error: 404 Not Found - The specified group or shared group does not exist.
  • Common error: 401 Unauthorized - Authentication failed, check API key validity.

Links

Discussion