ListProjectMembers.

External Documentation

To learn more, visit the GitLab documentation.

Parameters

ParameterDescription
Project IDThe ID or path of the project owned by the authenticated user. If the path is being used, it should be url encoded - for example: user%2my-project .
QueryA query string to search for members.
User IDsFilter the results on the given user IDs.

Example Output

[
	{
		"id": 1,
		"username": "raymond_smith",
		"name": "Raymond Smith",
		"state": "active",
		"avatar_url": "https://www.gravatar.com/avatar/c2525a7f58ae3776070e44c106c48e15?s=80&d=identicon",
		"web_url": "http://192.168.1.8:3000/root",
		"created_at": "2012-09-22T14:13:35Z",
		"created_by": {
			"id": 2,
			"username": "john_doe",
			"name": "John Doe",
			"state": "active",
			"avatar_url": "https://www.gravatar.com/avatar/c2525a7f58ae3776070e44c106c48e15?s=80&d=identicon",
			"web_url": "http://192.168.1.8:3000/root"
		},
		"expires_at": "2012-10-22",
		"access_level": 30,
		"group_saml_identity": null
	},
	{
		"id": 2,
		"username": "john_doe",
		"name": "John Doe",
		"state": "active",
		"avatar_url": "https://www.gravatar.com/avatar/c2525a7f58ae3776070e44c106c48e15?s=80&d=identicon",
		"web_url": "http://192.168.1.8:3000/root",
		"created_at": "2012-09-22T14:13:35Z",
		"created_by": {
			"id": 1,
			"username": "raymond_smith",
			"name": "Raymond Smith",
			"state": "active",
			"avatar_url": "https://www.gravatar.com/avatar/c2525a7f58ae3776070e44c106c48e15?s=80&d=identicon",
			"web_url": "http://192.168.1.8:3000/root"
		},
		"expires_at": "2012-10-22",
		"access_level": 30,
		"email": "john@example.com",
		"group_saml_identity": {
			"extern_uid": "ABC-1234567890",
			"provider": "group_saml",
			"saml_provider_id": 10
		}
	}
]

Workflow Library Example

List Project Members with Gitlab and Send Results Via Email

Preview this Workflow on desktop