GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation allows updating the Bamboo service integration settings for a specific GitLab project by sending a PUT request to the GitLab API endpoint `/api/v4/projects/{id}/services/bamboo`. It is useful for automating the configuration of Bamboo CI/CD integration within GitLab projects, enabling seamless build and deployment workflows.

Use Case Examples

  1. Automatically update Bamboo integration settings for a project when a new project is created.
  2. Modify Bamboo service parameters as part of a CI/CD pipeline setup automation.

Properties

Name Meaning
Skip Authentication Option to skip API authentication for the request.
Authentication Type of authentication used for the API request, defaulting to GitLab API key.
baseUrl Base URL of the GitLab instance, default is https://gitlab.com.
Method HTTP method to use for the request, default is GET but for this operation it is 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 Bamboo service integration is updated.
  • serviceStatus - Status or response details of the Bamboo service update operation.

Dependencies

  • GitLab API key credential

Troubleshooting

  • Ensure the project ID provided in path parameters is valid and exists in GitLab.
  • Verify that the API key used has sufficient permissions to update project service integrations.
  • Check the base URL to confirm it points to the correct GitLab instance.
  • If skipping authentication, ensure the endpoint is accessible without credentials, otherwise authentication errors will occur.

Links

Discussion