GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation retrieves indirect billable members of a specific user within a GitLab group. It is useful for scenarios where you need to track or manage billing-related user memberships indirectly associated with a group, such as auditing or billing reports in GitLab projects.

Use Case Examples

  1. Get indirect billable members for a user in a GitLab group to analyze billing data.
  2. Fetch paginated lists of indirect billable members for user management in GitLab groups.

Properties

Name Meaning
Skip Authentication Option to skip authentication for the request.
baseUrl Base URL of the GitLab instance, defaulting to https://gitlab.com.
Method HTTP method to use for the request, default is GET.
Query Parameters Optional query parameters for pagination.
Path Parameters Required path parameters to specify the group and user.

Output

JSON

  • id - The ID of the group.
  • user_id - The user ID of the billable member.
  • indirect - Indicates if the billable membership is indirect.
  • page - Current page number of the results.
  • per_page - Number of items per page in the results.

Dependencies

  • GitLab API authentication token or credentials

Troubleshooting

  • Ensure the group ID and user ID path parameters are correctly set; missing or incorrect IDs will cause errors.
  • Verify that the authentication token is valid and has sufficient permissions to access group billable members.
  • Pagination parameters (page, per_page) should be valid integers; invalid values may cause request failures.

Links

Discussion