v1

latestOpenAPI 3.1.02026-08-04164270844.7 KB
Classrooms

Create an attendance sheet

🔑

Required OAuth scope: attendanceSheets:write.

Creates an attendance sheet for the given classroom slot.

post/api/v2/classroom-slots/{classroomSlotId}/attendance-sheets

Path parameters

classroomSlotIdstring ObjectId required
Example:507f1f77bcf86cd799439011

The unique ID of the classroom slot.

Headers

360-api-version'v2.0' required

The version of the API.

Request body

namestring required

The title of the attendance sheet.

Example request

{
  "name": "First day afternoon"
}

Response

Returns the created attendance sheet.

OR

Example response

{
  "_id": "507f1f77bcf86cd799439011",
  "name": "First day afternoon",
  "personalizedFields": {
    "organizationName": "360Learning",
    "organizationLogoId": "507f1f77bcf86cd799439011"
  },
  "checkInCode": "1234"
}