action gitlab_get_v3_projects_id_access_requests { label: "Gets a list of access requests for a project." description: "This feature was introduced in GitLab 8.11." provider: gitlab method: GET path: "/v3/projects/{id}/access_requests" encoding: json input: { type: "object" properties: { id: { type: "string" } page: { type: "string" } per_page: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }