provider Groups GET
/rest/api/3/group/member @utdk/jira
/rest/api/3/group/member Get users from group
Returns a [paginated](#pagination) list of all users in a group.
Note that users are ordered by username, however the username is not returned in the results due to privacy reasons.
**[Permissions](#permissions) required:** either of:
* *Browse users and groups* [global permission](https://confluence.atlassian.com/x/x4dKLg).
* *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg).
- groupname query
- As a group's name can change, use of `groupId` is recommended to identify a group. The name of the group. This parameter cannot be used with the `groupId` parameter.
- string
- groupId query
- The ID of the group. This parameter cannot be used with the `groupName` parameter.
- string
- includeInactiveUsers query
- Include inactive users.
- boolean
- startAt query
- The index of the first item to return in a page of results (page offset).
- integer
- maxResults query
- The maximum number of items to return per page (number should be between 1 and 50).
- integer
Try it
Authentication
Configure credentials for The Jira Cloud platform REST API
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.
Saved automatically to browser storage.
Code snippet
Updates live as you fill in the form above.
TypeScript
import jira from '@utdk/jira';
await jira.getusersfromgroup({
"includeInactiveUsers": false,
"startAt": 0,
"maxResults": 50
})