Get Assignment Review List

get assignments list to review

get
/v2/assignment/review/list

used when you want to get assignments list to review

Authorizations
AuthorizationstringRequired
Query parameters
classroomSlugintegerRequired

slug of classroom

pageintegerOptional

page number, default no pagination

pageSizeintegerOptional

total items per page, default : 10

Responses
200

Response

application/json
get
/v2/assignment/review/list
GET /v2/assignment/review/list?classroomSlug=1 HTTP/1.1
Host: services.alkamedia.id
Authorization: YOUR_API_KEY
Accept: */*
200

Response

{
  "data": {
    "items": [
      {
        "created_at": "2024-08-14 11:10:18",
        "description": "text",
        "id": 1,
        "moduleName": "text",
        "unassigned": 1,
        "classroomId": 1,
        "type": "form",
        "updated_at": "2024-08-14 11:10:18",
        "content": "text",
        "deadline": "2024-08-14 11:10:18",
        "moduleId": 1,
        "title": "text",
        "assigned": 1,
        "classroomName": "text",
        "classroomSlug": "text",
        "isDeadline": true,
        "scored": 1,
        "totalStudent": 1
      }
    ],
    "page": 1,
    "perPage": 1,
    "totalItems": 1,
    "totalPages": 1
  },
  "message": "success",
  "status": true
}

Last updated