Returns the list of users who have access to the specified project along with their assigned roles.
Access to this endpoint requires appropriate permissions within the project or workspace.
If the project does not exist or is not accessible to the authenticated actor, a 404 Not Found response is returned.
This endpoint does not modify any data.
Use this endpoint when you need to:
curl -X GET https://api.hawzu.com/api/v1/workspace/{workspaceId}/project/{projectId}/members \
-H "Authorization: Bearer YOUR_API_TOKEN"This endpoint accepts the following path parameters:
| Parameter | Required | Description |
|---|---|---|
workspaceId | ✅ Yes | The ID of the workspace to get the project members for |
projectId | ✅ Yes | The ID of the project to get the members for |
| Header | Required | Description |
|---|---|---|
Authorization | ✅ Yes | Bearer token in the format Bearer <API_TOKEN> |
{
"data": [
{
"user_id": "user_123@example.com",
"name": "Srinath Reddy",
"role": "ADMIN",
}
]
}