Gets user's organizations and roles
GET/organizations
Gets user's organizations and roles
Responses
- 200
Success
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
id stringrequired
Organization id.
Example:
myorg
name stringrequired
Organization name.
Example:
My Org
tags
object[]
nullable
Project's Tags
id stringrequired
Tag.
Example:
status
name stringnullable
Tag value.
Example:
approved
roles string[]required
The assigning role.
permissions string[]nullable
User access permissions.
Example:
["project:view"]
[
{
"id": "myorg",
"name": "My Org",
"tags": [
{
"id": "status",
"name": "approved"
}
],
"roles": [
"string"
],
"permissions": [
"project:view"
]
}
]
Loading...