gitlab_get_integration
Retrieve details of a specific integration (e.g., Slack) for a GitLab project by providing the project ID and integration name. Simplify project management and configuration monitoring.
Instructions
Get integration details for a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
integration | Yes | The name of the integration (e.g., slack) | |
project_id | Yes | The ID or URL-encoded path of the project |
Input Schema (JSON Schema)
{
"properties": {
"integration": {
"description": "The name of the integration (e.g., slack)",
"type": "string"
},
"project_id": {
"description": "The ID or URL-encoded path of the project",
"type": "string"
}
},
"required": [
"project_id",
"integration"
],
"type": "object"
}