GitLab API

GitlabTool

Actions1000

Overview

This node operation allows updating the Apple App Store service integration settings for a specific project in GitLab via a PUT request to the GitLab API endpoint `/api/v4/projects/{id}/services/apple-app-store`. It is useful for automating the configuration of Apple App Store integration within GitLab projects, such as enabling or modifying service parameters programmatically.

Use Case Examples

  1. Automatically update Apple App Store integration settings for a project when project details change.
  2. Enable or disable the Apple App Store service for multiple projects in bulk via workflow automation.

Properties

Name Meaning
Skip Authentication Option to skip API authentication for the request.
Authentication Type of authentication used for the API request, hidden unless Skip Authentication is false.
baseUrl Base URL of the GitLab instance to send the request to.
Method HTTP method to use for the request, default is GET but for this operation it should be PUT.
Path Parameters Parameters to be included in the request path, specifically the project ID for this operation.

Output

JSON

  • id - The project ID for which the Apple App Store service integration is updated.
  • serviceStatus - Status or response details of the Apple App Store service update operation.

Dependencies

  • GitLab API key credential

Troubleshooting

  • Ensure the project ID path parameter is correctly provided and is a valid integer.
  • Verify that the GitLab API key credential is correctly configured and has sufficient permissions to update project service integrations.
  • If skipping authentication, ensure the GitLab instance allows unauthenticated requests for this endpoint, otherwise the request will fail.
  • Common error messages include 401 Unauthorized (authentication issues), 404 Not Found (invalid project ID), and 400 Bad Request (invalid request body or parameters).

Links

Discussion