Grade API can perform functions to interact or exchange data for Grade.
Add grade
Add a new grade.
Name
{ "id": "apiTestGrade", "name": "API Test Grade", "description": "This is a grade created by API." }
Delete grade
Delete a grade via grade ID.
{ "date": "Wed Aug 28 15:43:58 SGT 2019", "code": "200", "message": "Successful operation" }
Find 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": "" }, { "id": "G-002", "name": "Managers", "description": "" }, ..... ]
Get grade by ID
Get details of a grade via grade ID.
{ "id": "G-001", "name": "Board Members", "description": "" }
Update grade
Update the details of a grade.
{ "id": "apiTestGrade", "name": "API Test Grade", "description": "This grade is updated via API." }