Get users by projectId
GET/users/by/project/:projectId
Get users by projectId
Request
Path Parameters
projectId projectIdrequired
The unique identifier for the project
Query Parameters
page integer
Possible values: >= 1
Default value: 1
Specify the page number for pagination (default is 1).
limit integer
Default value: 10
Specify the number of projects per page (default is 10, 0 gets all results).
sortBy string
Possible values: [activePoints
, totalPoints
]
Field to order the results by (e.g., 'activePoints', 'totalPoints'). Default is 'totalPoints'.
sortOrder string
Possible values: [asc
, desc
]
Default value: desc
'asc' for ascending or 'desc' for descending order. Default is 'desc'.
Responses
- 200
- 403
- 404
- 500
Users retrieved successfully
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
sub string
[
{
"sub": "string"
}
]
Forbidden
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string
{
"error": "string"
}
{
"error": "Forbidden access"
}
NotFound
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string
{
"error": "string"
}
{
"error": "A mandatory item was not found"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string
{
"error": "string"
}
{
"error": "Internal Server Error"
}
Loading...