GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation allows updating the Pivotal Tracker service integration for a specific GitLab project by sending a PUT request to the GitLab API endpoint `/api/v4/projects/{id}/services/pivotaltracker`. It is useful for automating the configuration or modification of the Pivotal Tracker integration settings within GitLab projects.

Use Case Examples

  1. Automatically update Pivotal Tracker integration settings for a project when project details change.
  2. Enable or disable Pivotal Tracker integration for multiple projects in bulk via workflow automation.

Properties

Name Meaning
Skip Authentication Option to skip authentication for the request, useful for public or unauthenticated API calls.
Authentication Type of authentication to use for the API request, default is GitLab API key authentication.
baseUrl Base URL of the GitLab instance to which the API request is sent, default is https://gitlab.com.
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

  • response - The JSON response from the GitLab API after updating the Pivotal Tracker service integration for the specified project.

Dependencies

  • GitLab API key credential for authentication

Troubleshooting

  • Ensure the project ID provided in the path parameters is valid and the project exists in GitLab.
  • Verify that the API key used for authentication has sufficient permissions to update project service integrations.
  • Check that the base URL is correct and accessible.
  • If skipping authentication, confirm the API endpoint allows unauthenticated requests, otherwise the request will fail.

Links

Discussion