-
Wekan REST API v5.37
+
Wekan REST API v5.38
Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.
@@ -3516,6 +3528,20 @@ System.out.println(response.toString());
}
],
"permission":
"public",
+
"orgs": [
+ {
+
"orgId":
"string",
+
"orgDisplayName":
"string",
+
"isActive":
true
+ }
+ ],
+
"teams": [
+ {
+
"teamId":
"string",
+
"teamDisplayName":
"string",
+
"isActive":
true
+ }
+ ],
"color":
"belize",
"description":
"string",
"subtasksDefaultBoardId":
"string",
@@ -18294,6 +18320,20 @@ UserSecurity
}
],
"permission":
"public",
+
"orgs": [
+ {
+
"orgId":
"string",
+
"orgDisplayName":
"string",
+
"isActive":
true
+ }
+ ],
+
"teams": [
+ {
+
"teamId":
"string",
+
"teamDisplayName":
"string",
+
"isActive":
true
+ }
+ ],
"color":
"belize",
"description":
"string",
"subtasksDefaultBoardId":
"string",
@@ -18413,6 +18453,20 @@ UserSecurity
visibility of the board |
+orgs |
+[BoardsOrgs]¦null |
+false |
+none |
+the list of organizations that a board belongs to |
+
+
+teams |
+[BoardsTeams]¦null |
+false |
+none |
+the list of teams that a board belongs to |
+
+
color |
string |
true |
@@ -18982,6 +19036,100 @@ UserSecurity
+
BoardsOrgs
+
+
+
+
+
{
+ "orgId": "string",
+ "orgDisplayName": "string",
+ "isActive": true
+}
+
+
+
Properties
+
+
+
+Name |
+Type |
+Required |
+Restrictions |
+Description |
+
+
+
+
+orgId |
+string |
+true |
+none |
+The uniq ID of the organization |
+
+
+orgDisplayName |
+string |
+true |
+none |
+The display name of the organization |
+
+
+isActive |
+boolean |
+true |
+none |
+Is the organization active? |
+
+
+
+
BoardsTeams
+
+
+
+
+
{
+ "teamId": "string",
+ "teamDisplayName": "string",
+ "isActive": true
+}
+
+
+
Properties
+
+
+
+Name |
+Type |
+Required |
+Restrictions |
+Description |
+
+
+
+
+teamId |
+string |
+true |
+none |
+The uniq ID of the team |
+
+
+teamDisplayName |
+string |
+true |
+none |
+The display name of the team |
+
+
+isActive |
+boolean |
+true |
+none |
+Is the team active? |
+
+
+
@@ -18998,7 +19146,7 @@ UserSecurity
A comment on a card
-
Properties
+
Properties
@@ -19158,7 +19306,7 @@ UserSecurity
}
-Properties
+Properties
@@ -19547,7 +19695,7 @@ UserSecurity
}
-Properties
+Properties
@@ -19646,7 +19794,7 @@ UserSecurity
}
-Properties
+Properties
@@ -19766,7 +19914,7 @@ UserSecurity
{}
-Properties
+Properties
None
ChecklistItems
@@ -19785,7 +19933,7 @@ UserSecurity
An item in a checklist
-Properties
+Properties
@@ -19864,7 +20012,7 @@ UserSecurity
A Checklist
-Properties
+Properties
@@ -19949,7 +20097,7 @@ UserSecurity
A custom field on a card in the board
-Properties
+Properties
@@ -20087,7 +20235,7 @@ UserSecurity
}
-Properties
+Properties
@@ -20137,7 +20285,7 @@ UserSecurity
{}
-Properties
+Properties
None
Integrations
@@ -20161,7 +20309,7 @@ UserSecurity
Integration with third-party applications
-Properties
+Properties
@@ -20272,7 +20420,7 @@ UserSecurity
A list (column) in the Wekan board.
-Properties
+Properties
@@ -20500,7 +20648,7 @@ UserSecurity
}
-Properties
+Properties
@@ -20555,7 +20703,7 @@ UserSecurity
A swimlane is an line in the kaban board.
-Properties
+Properties
@@ -20828,7 +20976,7 @@ UserSecurity
A User in wekan
-Properties
+Properties
@@ -20989,7 +21137,7 @@ UserSecurity
}
-Properties
+Properties
@@ -21214,7 +21362,7 @@ UserSecurity
}
-Properties
+Properties
@@ -21246,7 +21394,7 @@ UserSecurity
}
-Properties
+Properties
@@ -21285,7 +21433,7 @@ UserSecurity
}
-Properties
+Properties
@@ -21324,7 +21472,7 @@ UserSecurity
}
-Properties
+Properties
@@ -21363,7 +21511,7 @@ UserSecurity
}
-Properties
+Properties
@@ -21416,6 +21564,8 @@ UserSecurity
+
+
diff --git a/public/api/wekan.yml b/public/api/wekan.yml
index 0b8d9d01c..841885259 100644
--- a/public/api/wekan.yml
+++ b/public/api/wekan.yml
@@ -1,7 +1,7 @@
swagger: '2.0'
info:
title: Wekan REST API
- version: v5.37
+ version: v5.38
description: |
The REST API allows you to control and extend Wekan with ease.
@@ -2690,6 +2690,20 @@ definitions:
enum:
- public
- private
+ orgs:
+ description: |
+ the list of organizations that a board belongs to
+ type: array
+ items:
+ $ref: "#/definitions/BoardsOrgs"
+ x-nullable: true
+ teams:
+ description: |
+ the list of teams that a board belongs to
+ type: array
+ items:
+ $ref: "#/definitions/BoardsTeams"
+ x-nullable: true
color:
description: |
The color of the board.
@@ -2969,6 +2983,44 @@ definitions:
- userId
- isAdmin
- isActive
+ BoardsOrgs:
+ type: object
+ properties:
+ orgId:
+ description: |
+ The uniq ID of the organization
+ type: string
+ orgDisplayName:
+ description: |
+ The display name of the organization
+ type: string
+ isActive:
+ description: |
+ Is the organization active?
+ type: boolean
+ required:
+ - orgId
+ - orgDisplayName
+ - isActive
+ BoardsTeams:
+ type: object
+ properties:
+ teamId:
+ description: |
+ The uniq ID of the team
+ type: string
+ teamDisplayName:
+ description: |
+ The display name of the team
+ type: string
+ isActive:
+ description: |
+ Is the team active?
+ type: boolean
+ required:
+ - teamId
+ - teamDisplayName
+ - isActive
CardComments:
type: object
description: A comment on a card
diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp
index f64722be1..21a369b46 100644
--- a/sandstorm-pkgdef.capnp
+++ b/sandstorm-pkgdef.capnp
@@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = (
appTitle = (defaultText = "Wekan"),
# The name of the app as it is displayed to the user.
- appVersion = 537,
+ appVersion = 538,
# Increment this for every release.
- appMarketingVersion = (defaultText = "5.37.0~2021-07-04"),
+ appMarketingVersion = (defaultText = "5.38.0~2021-07-18"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,
diff --git a/snapcraft.yaml b/snapcraft.yaml
index 50b4d3dc5..5d2c2562c 100644
--- a/snapcraft.yaml
+++ b/snapcraft.yaml
@@ -1,5 +1,5 @@
name: wekan
-version: '5.37'
+version: '5.38'
summary: The open-source kanban
description: |
Wekan is an open-source and collaborative kanban board application.