API server
https://app.coolify.io/api/v1Create a new GitLab app (OAuth source). Credentials may be supplied later via the UI or update endpoint.
Authorization
bearerAuth Go to Keys & Tokens / API tokens and create a new token. Use the token as the bearer token.
In: header
Request Body
application/json
GitLab app creation payload.
TypeScript Definitions
Use the request body type in TypeScript.
Name of the GitLab app.
GitLab instance URL (e.g., https://gitlab.com).
GitLab API URL (defaults to {html_url}/api/v4).
Custom user for SSH access (default: git).
Custom port for SSH access (default: 22).
Optional comma-separated group names to filter repositories.
GitLab OAuth Application ID.
GitLab OAuth Application Secret.
Webhook secret token (auto-generated when omitted).
OAuth redirect URI registered in GitLab.
Is this app system-wide (non-cloud instances only).
Response Body
application/json
application/json
application/json
application/json
curl -X POST "https://app.coolify.io/api/v1/gitlab-apps" \ -H "Content-Type: application/json" \ -d '{ "name": "string", "html_url": "string" }'{ "id": 0, "uuid": "string", "name": "string", "api_url": "string", "html_url": "string", "custom_user": "string", "custom_port": 0, "client_id": "string", "group_name": "string", "redirect_uri": "string", "is_system_wide": true, "team_id": 0}{ "message": "Invalid token."}{ "message": "Unauthenticated."}{ "message": "Validation error.", "errors": { "name": [ "The name field is required." ], "api_url": [ "The api url field is required.", "The api url format is invalid." ] }}