GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation retrieves details of a specific user email by its ID from the GitLab API. It is useful for scenarios where you need to fetch information about a particular email address associated with the authenticated user in GitLab, such as verifying email details or managing user contact information.

Use Case Examples

  1. Fetch details of a user email by providing the email ID to manage user contact information in GitLab.
  2. Verify a specific email address associated with the authenticated GitLab user.

Properties

Name Meaning
Skip Authentication Option to skip authentication for the request, useful for public or unauthenticated endpoints.
Authentication The authentication method used for the request, 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 parameter specifying the email ID to retrieve details for.

Output

JSON

  • email_id - The ID of the email retrieved.
  • email - The email address details retrieved from the GitLab API.
  • confirmed_at - Timestamp when the email was confirmed.
  • created_at - Timestamp when the email was created.

Dependencies

  • GitLab API key credential

Troubleshooting

  • Ensure the email_id path parameter is provided and valid; missing or invalid ID will cause request failure.
  • Authentication errors may occur if the GitLab API key credential is missing or invalid; verify credentials configuration.
  • Network or baseUrl issues may cause request failures; ensure the baseUrl is correct and reachable.

Links

Discussion