Load Assignments Endpoint
The GET /assignments
endpoint retrieves the list of all assignments that you have created on AssignmentOS.
Request
Response
For successful requests, the response code will be 200 OK
and the response object will be a JSON
list containing one more AssignmentDetail
objects. An AssignmentDetail
object contains the following fields:
Field Name | JSON Data Type | Description |
---|---|---|
|
| The Unique ID of the assignment. |
|
| The name of the assignment. |
|
| The Unique ID of the course this assignment belongs to in AssignmentOS. |
|
| The name of the course this assignment belongs to in AssignmentOS. |
Example
Let's assume you have one Course on AssignmentOS called Java Intro
, and that Course contains the following assignments:
Then the response from calling this endpoint will be:
Last updated