GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation deletes a billable member from a specified group in GitLab. It is useful for managing group memberships and billing by removing users who should no longer be counted as billable members. For example, an organization can automate the removal of users from billing groups when they leave a project or company.

Use Case Examples

  1. Remove a user from the billable members list of a GitLab group to stop billing for that user.
  2. Automate group membership cleanup by deleting billable members who are no longer active.

Properties

Name Meaning
Skip Authentication Option to skip authentication for the request.
Authentication The authentication method used for the API request, defaulting to GitLab API key.
baseUrl The 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 required in the request path to identify the group and user to delete from billable members.

Output

JSON

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

Dependencies

  • GitLab API key credential for authentication

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 skipping authentication, the request will likely fail unless the GitLab instance allows unauthenticated access for this operation.

Links

Discussion