Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
...
Description
Retrieve first process with details of every packagesRetrieves a list of users
User Role
Admin
Method
HTTP GET/POST
...
Sample URL
http:/localhost/jw/web/json/workflow/process/list/package
Sample Result
Description
Retrieve first process with details of every packagesRetrieves a list of user not in a group
User Role
Admin
Method
HTTP GET/POST
...
sort - (Optional) column name to be sorted
desc
checkWhiteList- (Optional) Boolean value
to return the list based on process white listto determine whether to sort by ascending or descending order (true equals to descending)
start - (Optional) where rows start from
rows - (Optional) number of rows per page
Sample URL
http://localhost:8080/jw/web/json/directory/admin/workflowuser/processnotInGroup/list/packageSample Result?groupId=G-002
Sample Result
Code Block | ||
---|---|---|
| ||
{
"total": 4,
"data": [{
"id": "admin",
"lastName": "",
"username": "admin",
"email": "",
"firstName": "Admin"
}, {
"id": "cat",
"lastName": "Grant",
"username": "cat",
"email": "owen@joget.org",
"firstName": "Cat"
}, {
"id": "clark",
"lastName": "Kent",
"username": "clark",
"email": "",
"firstName": "Clark"
}, {
"id": "david",
"lastName": "Cain",
"username": "david",
"email": "",
"firstName": "David"
}]
} |
...