Returns a paged list of members of a specified group.

To fetch all results, call repeatedly with the offset parameter as long as the result metadata has a next_offset value.

Basic Parameters

ParameterDescription
Group IDGroup ID to look up users for.

Advanced Parameters

ParameterDescription
LimitThe maximum number of records returned.Default: 100; Max: 500
OffsetThe offset from 0 at which to start record retrieval.When used with “limit”, the handler will return “limit” records starting at the n-th record, where n is the offset.Default: 0

Example Output

{
	"metadata": {
		"total_objects": 1
	},
	"response": [
		{
			"user_id": "DUAL2RWXZLAF353T9DFH",
			"username": "test-user"
		}
	],
	"stat": "OK"
}

Workflow Library Example

List Users in Group with Duo and Send Results Via Email

Preview this Workflow on desktop