Skip to main content
Return a list of GitLab projects by a group ID. Note: When executed without a connection, only public projects are returned.
External DocumentationTo learn more, visit the GitLab documentation.

Parameters

ParameterDescription
Group IDThe ID or URL-encoded path of the group owned by the authenticated user. Can be obtained via the List Groups action.

For more information refer to GitLab documentation.
Order BySelect the field to order the results by.

Note:
* When set to similarity, the Sort parameter is ignored, and the Search parameter must be provided.
* When the Search parameter is not provided, results are ordered by name.
PageThe page number to get results from. The value must be greater than 0.

Note: There is a maximum allowed offset, for more information refer to the GitLab Documentation.
Per PageThe maximum number of results to return.

Note: There is a maximum allowed offset, for more information refer to the GitLab Documentation.
Return All PagesAutomatically fetch all resources, page by page.
SearchThe search value to filter the list of authorized projects by.

Note: If the Search parameter is not provided, results are ordered by name.
SortSelect the order in which results are returned. Use asc for ascending order and desc for descending order.

Note: This parameter is ignored if Order By parameter is set to similarity.
VisibilitySelect the visibility level of the projects to filter results by.

Example Output

[
	{
		"id": 9,
		"description": "foo",
		"default_branch": "main",
		"tag_list": [],
		"topics": [],
		"archived": false,
		"visibility": "internal",
		"ssh_url_to_repo": "git@gitlab.example.com/html5-boilerplate.git",
		"http_url_to_repo": "http://gitlab.example.com/h5bp/html5-boilerplate.git",
		"web_url": "http://gitlab.example.com/h5bp/html5-boilerplate",
		"name": "Html5 Boilerplate",
		"name_with_namespace": "Experimental / Html5 Boilerplate",
		"path": "html5-boilerplate",
		"path_with_namespace": "h5bp/html5-boilerplate",
		"issues_enabled": true,
		"merge_requests_enabled": true,
		"wiki_enabled": true,
		"jobs_enabled": true,
		"snippets_enabled": true,
		"created_at": "2016-04-05T21:40:50.169Z",
		"last_activity_at": "2016-04-06T16:52:08.432Z",
		"shared_runners_enabled": true,
		"creator_id": 1,
		"namespace": {
			"id": 5,
			"name": "Experimental",
			"path": "h5bp",
			"kind": "group"
		},
		"avatar_url": null,
		"star_count": 1,
		"forks_count": 0,
		"open_issues_count": 3,
		"public_jobs": true,
		"shared_with_groups": [],
		"request_access_enabled": false
	}
]

Workflow Library Example

List Projects by Group Id with Gitlab and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop