GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation updates the application plan limits in GitLab via the API endpoint `/api/v4/application/plan_limits` using the PUT method. It is useful for administrators who want to programmatically modify plan limits for their GitLab instance, such as adjusting usage quotas or resource limits for different plans.

Use Case Examples

  1. An admin automates updating plan limits to increase the maximum number of projects allowed per plan.
  2. A DevOps engineer integrates this node in a workflow to adjust plan limits based on usage analytics.

Properties

Name Meaning
Skip Authentication Whether to skip API authentication for the request.
Authentication The authentication method used for the API request, defaulting to GitLab API key authentication.
baseUrl The base URL of the GitLab instance to which the API request is sent.
Method The HTTP method used for the API request, defaulting to PUT for this operation.

Output

JSON

  • response - The JSON response from the GitLab API after updating the application plan limits.

Dependencies

  • GitLab API key credential for authentication

Troubleshooting

  • Ensure the API key has sufficient permissions to update application plan limits.
  • Verify the baseUrl is correct and accessible.
  • Check that the request body matches the expected schema for plan limits update to avoid validation errors.

Links

Discussion