Get users with access to project/publication
Returns a list of users who has access to a specific project or publication.
Path Parameters
- project-idstringrequired
The ID of the project/publication to retrieve information about.
Query Parameters
- typesstring
Filter by user types (comma-separated).
ExamplesPowerReaderContributorPowerReader, Contributor
Responses
GET/projects/{project-id}/users
[
{
"userInfo": {
"about": "",
"avatarImageUrl": null,
"cultureInfoId": "en-US",
"email": "admin@email.com",
"firstName": "",
"isAutoDetectCultureInfo": true,
"isAutoDetectTimeZone": true,
"lastActivityDate": "/Date(1734525940030+0000)/",
"lastName": "",
"middleName": "",
"timeZoneId": "Jordan Standard Time"
},
"userName": "admin",
"userRole": "Administrator",
"userType": "Contributor",
"isEnabled": true
},
{
"userInfo": {
"about": "",
"avatarImageUrl": null,
"cultureInfoId": "en-GB",
"email": "power-reader@email.com",
"firstName": "",
"isAutoDetectCultureInfo": false,
"isAutoDetectTimeZone": true,
"lastActivityDate": null,
"lastName": "",
"middleName": "",
"timeZoneId": "UTC"
},
"userName": "power-reader",
"userRole": null,
"userType": "PowerReader",
"isEnabled": true
}
]