GitLab API icon

GitLab API

Gitlab

Actions917

Overview

This node operation deletes a billable member from a specified group in GitLab using the GitLab API. It is useful for managing group memberships and billing by removing users who should no longer be billed under a group. For example, an organization can automate the removal of former employees from billing groups.

Use Case Examples

  1. Remove a user from the billable members of a GitLab group by specifying the group ID and user ID.
  2. Automate cleanup of billable members in GitLab groups to ensure accurate billing.

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 but DELETE is used for this operation.
Path Parameters Parameters for the API path including group ID and user ID to identify the billable member to delete.

Output

JSON

  • statusCode - HTTP status code of the delete operation response.
  • responseBody - Response body from the API after attempting to delete the billable member.

Dependencies

  • GitLab API key credential

Troubleshooting

  • Ensure the group ID and user ID are correct and exist in GitLab to avoid 404 errors.
  • Check that the API key has sufficient permissions to delete billable members from groups.
  • If authentication is skipped, the request will likely fail unless the GitLab instance allows unauthenticated access for this operation.

Links

Discussion