Printago API
PUT /v1/classwork/{id}/assignments

Set the students assigned to a classwork item

Requires: classwork.editor

Path Parameters

id required
string

Request Body

ClassworkAssignmentsUpdate
userIdsrequired
string[]
max items: 10000

Example Request

application/json
{
  "userIds": [
    "string"
  ]
}

Response Schema

Response
value
object[]

Example Response

200 OK — application/json
[
  {
    "classworkId": "string",
    "userId": "string",
    "assignedAt": "2026-09-16T04:04:12.309Z",
    "id": "string",
    "storeId": "string",
    "createdAt": "2026-09-16T04:04:12.309Z",
    "updatedAt": "2026-09-16T04:04:12.309Z"
  }
]