Get the users that are nested members of the specified group.

External Documentation

To learn more, visit the Atlassian Crowd documentation.

Parameters

ParameterDescription
Group NameThe name of the group.
UsernameThe unique username of a specific user. If specified, the response will include only users who are nested members of the specified group.

Example Output

{
	"user": [
		{
			"link": {
				"href": "https://crowdserver/crowd/rest/usermanagement/1/user?username=sampleuser",
				"rel": "self"
			},
			"name": "sampleuser",
			"password": {
				"link": {
					"href": "https://crowdserver/crowd/rest/usermanagement/1/user/password?username=sampleuser",
					"rel": "edit"
				}
			},
			"key": "557057:927441f1-cc92-4030-b633-8a2bbdf7136e",
			"active": true,
			"attributes": {
				"link": {
					"href": "https://crowdserver/crowd/rest/usermanagement/1/user/attributes?username=sampleuser&attributename=invalidPasswordAttempts&attributename=requiresPasswordChange",
					"rel": "self"
				},
				"attribute": [
					{
						"link": {
							"href": "https://crowdserver/crowd/rest/usermanagement/1/user/attributes?username=sampleuser&attributename=invalidPasswordAttempts",
							"rel": "self"
						},
						"name": "invalidPasswordAttempts",
						"values": [
							"0"
						]
					},
					{
						"link": {
							"href": "https://crowdserver/crowd/rest/usermanagement/1/user/attributes?username=sampleuser&attributename=invalidPasswordAttempts&attributename=requiresPasswordChange",
							"rel": "self"
						},
						"name": "requiresPasswordChange",
						"values": [
							"false"
						]
					}
				]
			},
			"first-name": "Sample",
			"last-name": "User",
			"display-name": "Sample User",
			"email": "sample@user.cool"
		},
		{
			"link": {
				"href": "https://crowdserver/crowd/rest/usermanagement/1/user?username=sampleuser",
				"rel": "self"
			},
			"name": "sampleuser",
			"password": {
				"link": {
					"href": "https://crowdserver/crowd/rest/usermanagement/1/user/password?username=sampleuser",
					"rel": "edit"
				}
			},
			"key": "557057:927441f1-cc92-4030-b633-8a2bbdf7136e",
			"active": true,
			"attributes": {
				"link": {
					"href": "https://crowdserver/crowd/rest/usermanagement/1/user/attributes?username=sampleuser&attributename=invalidPasswordAttempts&attributename=requiresPasswordChange",
					"rel": "self"
				},
				"attribute": [
					{
						"link": {
							"href": "https://crowdserver/crowd/rest/usermanagement/1/user/attributes?username=sampleuser&attributename=invalidPasswordAttempts",
							"rel": "self"
						},
						"name": "invalidPasswordAttempts",
						"values": [
							"0"
						]
					},
					{
						"link": {
							"href": "https://crowdserver/crowd/rest/usermanagement/1/user/attributes?username=sampleuser&attributename=invalidPasswordAttempts&attributename=requiresPasswordChange",
							"rel": "self"
						},
						"name": "requiresPasswordChange",
						"values": [
							"false"
						]
					}
				]
			},
			"first-name": "Sample",
			"last-name": "User",
			"display-name": "Sample User",
			"email": "sample@user.cool"
		}
	]
}

Workflow Library Example

Get Nested Group Members with Atlassian Crowd and Send Results Via Email

Preview this Workflow on desktop