Start Assignment Endpoint
The POST /assignments/instance
endpoint starts a specific assignment for a specific student.
Request
This endpoint takes the following JSON
object as the request body:
Field Name | JSON Data Type | Required | Description |
---|---|---|---|
|
| The Unique ID of the assignment, retrieved from the Load Assignment Endpoint. | |
|
| The name of the student. | |
|
| The student's email address. |
Response
For successful requests, the response code will be 201 Created
and the response body will be a JSON
object containing the following fields:
Field Name | JSON Data Type | Description |
---|---|---|
|
| The Unique ID of this assignment instance. |
|
| The URL of this assignment instance. |
Example
An example request to this endpoint is:
The body of the response to this request would be:
Last updated