Denies an access request for the given user.

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://bump.sh/demo/doc/gitlab/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Gitlab (Unofficial) MCP server": {
  "url": "https://bump.sh/demo/doc/gitlab/mcp"
}
Close
DELETE /groups/{id}/access_requests/{user_id}

This feature was introduced in GitLab 8.11.

Path parameters

  • id string Required

    The ID or URL-encoded path of the group owned by the authenticated user

  • user_id integer(int32) Required

    The user ID of the access requester

Responses

  • 204

    Denies an access request for the given user.

DELETE /groups/{id}/access_requests/{user_id}
curl \
 --request DELETE 'https://www.gitlab.com/api/v4/groups/{id}/access_requests/{user_id}' \
 --header "Private-Token: $API_KEY"