Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
changes.mady.by.user Justin
Saved on Sept 03, 2019
Saved on Sept 04, 2019
...
AnchorAdd groupAdd groupAdd group
Add a new group.
Name
{ "id": "apiTestGroup", "name": "API Test Group", "description": "This is a group created by API." }
AnchorDelete groupDelete groupDelete group
Delete a group via group ID.
{ "date": "Wed Aug 28 16:13:00 SGT 2019", "code": "200", "message": "Successful operation" }
AnchorFind groupFind groupFind group
Get all groups by default.
Able to filter or sort the returned results via parameters.
Group data column to sort.
Must be used in conjunction with "sortDescending" parameter.
Sort the specified "sort" parameter value in ascending or descending order.
Expects a boolean value.
Must be used in conjunction with "sort" parameter.
[ { "id": "G-001", "name": "Managers", "description": "" }, { "id": "G-002", "name": "CxO", "description": "" }, ..... ]
AnchorFind group by usernameFind group by usernameFind group by username
Find the group that belongs to the specified user via username.
Search for group(s) that the user belongs or does not belong to.
[ { "id": "G-001", "name": "Managers", "description": "" } ]
AnchorGet group by IDGet group by IDGet group by ID
Get details of a group via group ID.
{ "id": "G-002", "name": "CxO", "description": "" }
AnchorUpdate groupUpdate groupUpdate group
Update the details of a group.
{ "id": "apiTestGroup", "name": "API Test Group", "description": "This group is updated via API." }