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 Jul 20, 2020
...
AnchorAdd gradeAdd gradeAdd grade
Add a new grade.
Name
{ "id": "apiTestGrade", "name": "API Test Grade", "description": "This is a grade created by API.", "organization": { "id": "ORG-001" } }
AnchorAssign user to gradeAssign user to gradeAssign user to grade
Assign a Joget user to a grade.
{ "userId": "cat", "startDate": null, "endDate": null, "employeeCode": "", "gradeId": "apiTestGrade", "departmentId": null, "organizationId": "ORG-001" }
AnchorDelete gradeDelete gradeDelete grade
Delete a grade via grade ID.
{ "date": "Wed Aug 28 15:43:58 SGT 2019", "code": "200", "message": "Successful operation" }
AnchorFind gradeFind gradeFind grade
Gets all grades from all organizations by default.
Able to filter or sort the returned results via parameters.
Grade 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": "Board Members", "description": "", "organization": { "id": "ORG-001" } }, { "id": "G-002", "name": "Managers", "description": "", "organization": { "id": "ORG-001" } }, ..... ]
AnchorGet grade by IDGet grade by IDGet grade by ID
Get details of a grade via grade ID.
{ "id": "G-001", "name": "Board Members", "description": "" }
AnchorUnassign user from gradeUnassign user from gradeUnassign user from grade
Unassign a Joget user from a grade.
{ "date": "Thu Dec 05 03:29:56 SGT 2019", "code": "200", "message": "Successful operation" }
AnchorUpdate gradeUpdate gradeUpdate grade
Update the details of a grade.
{ "id": "apiTestGrade", "name": "API Test Grade", "description": "This grade is updated via API.", "organization": { "id": "ORG-001" } }