GitLab API

GitlabTool

Actions905

Overview

This node operation retrieves the support PIN of a specific user from the GitLab API (version 4). It is useful in scenarios where support or administrative actions require verification or identification of a user via their support PIN. For example, a support team member might use this to verify a user's identity before providing assistance.

Use Case Examples

  1. Retrieve the support PIN for a user with a given user ID to verify their identity during a support call.
  2. Automate fetching user support PINs for administrative audits or support workflows.

Properties

Name Meaning
Skip Authentication Determines whether to skip the authentication process for the API request.
Authentication Specifies the authentication method to use, defaulting to GitLab API key authentication.
baseUrl The base URL of the GitLab instance to which the API request is sent, defaulting to https://gitlab.com.
Method The HTTP method used for the API request, defaulting to GET.
Path Parameters The path parameters for the API request, specifically the user ID whose support PIN is being retrieved.

Output

JSON

  • support_pin - The support PIN of the user retrieved from the GitLab API.

Dependencies

  • GitLab API key credential for authentication

Troubleshooting

  • Ensure the user ID provided in the path parameters is valid and exists in the GitLab instance.
  • Verify that the API key credential has sufficient permissions to access user support PIN information.
  • Check the baseUrl to ensure it points to the correct GitLab instance, especially if using a self-hosted GitLab server.

Links

Discussion