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
student_name
string
The name of the student.
student_email
string
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
instance_id
string
The Unique ID of this assignment instance.
instance_url
string
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