GitLab API

GitlabTool

Actions905

Overview

This node operation deletes a broadcast message in GitLab by its ID. It is useful for automating the removal of outdated or irrelevant broadcast messages from a GitLab instance, helping maintain clear and current communication within the platform.

Use Case Examples

  1. Automatically delete a broadcast message after a certain event or time period.
  2. Remove a broadcast message that is no longer relevant or was created by mistake.

Properties

Name Meaning
Skip Authentication Whether to skip authentication for the request.
Authentication The authentication method used for the request, 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, which is DELETE for this operation.
Path Parameters The path parameters for the request, specifically the ID of the broadcast message to delete.

Output

JSON

  • success - Indicates whether the broadcast message was successfully deleted.

Dependencies

  • GitLab API key credential for authentication

Troubleshooting

  • Ensure the broadcast message ID provided in the path parameters is valid and exists in the GitLab instance.
  • Check that the API key credential has sufficient permissions to delete broadcast messages.
  • Verify the base URL is correct and accessible.
  • Common error messages include 404 Not Found if the broadcast message ID does not exist, and 401 Unauthorized if authentication fails.

Links

Discussion