To retrieve projects of a root organization
To get projects associated to a root organization based on the user permissions
Authorizations:
query Parameters
includePermissions | boolean Default: false whether to include the user permissions on the project resource |
includeInbox | boolean Default: false Whether to include the projects with inbox classification or not |
limit | integer [ 1 .. 100 ] Default: 20 Example: limit=50 Limits the number of returned results |
offset | integer >= 0 Default: 0 Example: offset=0 Offset from which start returned results |
Responses
Response Schema: application/json
object (Pagination) | |||||||||||||||
| |||||||||||||||
Array of objects (ProjectV2Response) | |||||||||||||||
Array
|
Response samples
- 200
- 400
- 401
- 403
- 500
{- "pagination": {
- "offset": 0,
- "limit": 20,
- "total": 50,
- "previous": "/resourceManager/v2/projects?offset=0&limit=20",
- "next": "/resourceManager/v2/projects?offset=10&limit=20"
}, - "data": [
- {
- "projectId": "1234",
- "projectName": "Default project",
- "inboxResource": true,
- "parentOrganizationId": "1234",
- "labels": {
- "application": "Network Edge"
}, - "silentProject": true,
- "permissions": [
- {
- "actions": [
- "resourcemanager.project.read",
- "fabric.l3connection.create"
], - "resourceType": "L2_CONNECTION"
}
]
}
]
}