GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation updates the Apple App Store integration settings for a specific GitLab group by sending a PUT request to the GitLab API endpoint `/api/v4/groups/{id}/integrations/apple-app-store`. It is useful for managing and configuring Apple App Store integrations within GitLab groups programmatically, such as updating credentials or integration parameters.

Use Case Examples

  1. Updating Apple App Store integration settings for a GitLab group with ID 12345 by providing the necessary request body parameters.
  2. Automating the management of Apple App Store 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 for the GitLab API, defaulting to https://gitlab.com.
Method The HTTP method to use for the 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 Apple App Store integration to update.

Output

JSON

  • response - The JSON response from the GitLab API after updating the Apple App Store integration.

Dependencies

  • GitLab API authentication credential

Troubleshooting

  • Ensure the group ID (`id`) path parameter is correctly provided and corresponds to an existing GitLab group.
  • Verify that the authentication credentials are valid and have sufficient permissions to update group integrations.
  • Check the request body schema to ensure all required fields for the Apple App Store integration update are included and correctly formatted.

Links

Discussion