GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation updates the Campfire integration settings for a specific GitLab group by sending a PUT request to the GitLab API endpoint `/api/v4/groups/{id}/integrations/campfire`. It is useful for managing and configuring Campfire integration within GitLab groups programmatically, such as enabling or modifying notification settings for group activities.

Use Case Examples

  1. Updating Campfire integration settings for a GitLab group to customize notifications.
  2. Automating the configuration of group integrations in GitLab as part of 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, defaulting to GitLab API key authentication.
baseUrl The base URL of the GitLab instance to which the request is sent.
Method The HTTP method used for the request, defaulting to PUT for this operation.
Path Parameters Parameters included in the request path, specifically the group ID to identify which group's Campfire integration to update.

Output

JSON

  • id - The ID of the GitLab group for which the Campfire integration is updated.
  • integrationStatus - The status or result of the Campfire integration update operation.

Dependencies

  • GitLab API key credential

Troubleshooting

  • Ensure the group ID provided in the path parameters is valid and exists in the GitLab instance.
  • Verify that the API key used for authentication has sufficient permissions to update group integrations.
  • Check the base URL to confirm it points to the correct GitLab instance, especially if using a self-hosted GitLab server.
  • Common error messages may include authentication failures, invalid group ID, or insufficient permissions. Resolving these typically involves verifying credentials, permissions, and input parameters.

Links

Discussion