GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation updates the Asana integration settings for a specific GitLab group by sending a PUT request to the GitLab API endpoint `/api/v4/groups/{id}/integrations/asana`. It is useful for automating the configuration of Asana integrations within GitLab groups, such as enabling or modifying integration parameters programmatically.

Use Case Examples

  1. Automatically update Asana integration settings for a GitLab group when a new project is created.
  2. Synchronize Asana integration configurations across multiple GitLab groups via workflow automation.

Properties

Name Meaning
Skip Authentication Option to skip authentication for the API request.
Authentication Type of authentication used for the API request, defaulting to GitLab API key.
baseUrl Base URL for the GitLab instance, default is https://gitlab.com.
Method HTTP method to use for the request, default is GET but PUT is used for this operation.
Path Parameters Parameters to be included in the request path, specifically the group ID for this operation.

Output

JSON

  • response - The JSON response from the GitLab API after updating the Asana integration for the specified group.

Dependencies

  • GitLab API key credential

Troubleshooting

  • Ensure the group ID provided in the path parameters is valid and exists in GitLab.
  • Verify that the API key used for authentication has sufficient permissions to update group integrations.
  • Check the request body schema matches the expected structure for the Asana integration update to avoid validation errors.

Links

Discussion