Retrieve all projects for a User within an Organization
GET/v1/organizations/:organizationId/projects
Retrieve all projects for a User within an Organization
Request
Path Parameters
organizationId stringrequired
Query Parameters
page numberrequired
Possible values: >= 1
Default value: 1
Page number starting from 1.
Example: 1
limit numberrequired
Possible values: >= 1
and <= 100
Default value: 10
Limit the number of results returned. Default is 10.
Example: 10
Responses
- 200
- 404
- 412
Projects retrieved successfully.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
data object[]required
Array of user-organization roles
project object
id stringrequired
The unique identifier for the project.
name stringrequired
The name of the project.
platformType stringrequired
Possible values: [ANDROID
, IOS
, AMAZON
]
The platform type of the project.
role stringrequired
Possible values: [ADMIN
, DEVELOPER
, TESTER
]
The role of the user within the organization.
metadata object
currentPage numberrequired
The current page number.
limit numberrequired
Number of items per page.
total numberrequired
Total number of items.
nextPage numbernullablerequired
The next page number, or null if this is the last page.
previousPage numbernullablerequired
The previous page number, or null if this is the first page.
{
"data": [
{
"project": {
"id": "abc123",
"name": "Project A",
"platformType": "ANDROID"
},
"role": "ADMIN"
}
],
"metadata": {
"currentPage": 1,
"limit": 10,
"total": 100,
"nextPage": 2,
"previousPage": null
}
}
No projects found.
Organization is not active.
Loading...