GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation updates the Google Play integration settings for a specific GitLab group by sending a PUT request to the GitLab API endpoint `/api/v4/groups/{id}/integrations/google-play`. It is useful for managing and configuring Google Play integrations within GitLab groups programmatically, such as updating credentials or settings related to the integration.

Use Case Examples

  1. Updating Google Play integration settings for a GitLab group with ID 12345 to change authentication or configuration parameters.
  2. Automating the management of Google Play integrations across multiple GitLab groups in a CI/CD pipeline.

Properties

Name Meaning
Skip Authentication Determines whether to skip authentication for the API request.
Authentication Specifies the authentication method to use for the API request, hidden unless Skip Authentication is false.
baseUrl The base URL of the GitLab instance to which the API request is sent.
Method The HTTP method used for the API request, defaulting to PUT for this operation.
Path Parameters The path parameters for the API request, specifically the group ID (`id`) to identify which group's Google Play integration to update.

Output

JSON

  • response - The JSON response from the GitLab API after updating the Google Play integration.

Dependencies

  • GitLab API key credential

Troubleshooting

  • Ensure the group ID (`id`) path parameter is correctly set and corresponds to an existing GitLab group.
  • Verify that the GitLab API key credential is valid and has sufficient permissions to update group integrations.
  • Check the base URL to ensure it points to the correct GitLab instance if using a self-hosted GitLab server.
  • Common error messages include 401 Unauthorized (invalid or missing API key), 404 Not Found (group ID does not exist), and 400 Bad Request (invalid request body). Resolving these involves correcting credentials, verifying group existence, and ensuring the request body matches the expected schema.

Links

Discussion