Description: Returns all users associated with the project.
Since: 7.17.4
Security: Requires authentication using Access Tokens, either as admin, a user with the Platform Administrator role, or starting from Artifactory Self-Hosted version 7.117.5, using a scoped token with the project:<project_key>/members/**:r scope. Note that if the request is issued by a Project Admin, only the projects listed under the Project Admin's scope will be listed.
Usage: GET ${baseUrl}/access/api/v1/projects/{project_key}/users
Produces: application/json; charset=UTF-8
Parameters:
Name | Description |
|---|---|
(path) | The project key |
Header parameter: Authorization: Bearer
Sample Response:
[
{
"name": "memberName",
"roles": [
"developer"
]
}
]