Get available projects for user within organization with roles
GET/organizations/:orgId/projects
Get available projects for user within organization with roles
Request
Path Parameters
orgId stringrequired
Responses
- 200
Success
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
id stringrequired
Project id.
Example:
0123456789abcdef0123456789abcdef
name stringrequired
Project name.
Example:
My Project
description stringnullable
The project description.
Example:
Project description
epsg stringnullable
Project's EPSG
Example:
5105
roles string[]required
The assigning roles.
Example:
["viewer"]
tags
object[]
nullable
Project tags.
id stringrequired
Tag.
Example:
status
name stringnullable
Tag value.
Example:
approved
permissions string[]nullable
User access permissions.
Example:
["project:view"]
created date-time
DateTime project created
modified date-time
DateTime project last modified
viewCount int64
View count
size int64
Total project's files size
[
{
"id": "0123456789abcdef0123456789abcdef",
"name": "My Project",
"description": "Project description",
"epsg": "5105",
"roles": [
"viewer"
],
"tags": [
{
"id": "tag_1",
"name": "value_1"
},
{
"id": "tag_2"
}
],
"permissions": [
"project:view"
],
"created": "2024-07-29T15:51:28.071Z",
"modified": "2024-07-29T15:51:28.071Z",
"viewCount": 0,
"size": 0
}
]
Loading...