Get Student List

Get class student list

get
/v3/class/students

get class student list

Authorizations
AuthorizationstringRequired
Query parameters
classroomSlugstringOptional

slug of class

joinbooleanOptional

if true, show all joined mentor. If false, show all not joined mentor

pageintegerOptional

page number, default: 1

pageSizeintegerOptional

page size, default: 10

Responses
200

Response

application/json
get
/v3/class/students
GET /v3/class/students HTTP/1.1
Host: services.alkamedia.id
Authorization: YOUR_API_KEY
Accept: */*
200

Response

{
  "data": {
    "items": [
      {
        "transcriptFile": "text",
        "averageScore": 1,
        "photo": "text",
        "rank": 1,
        "github": "text",
        "name": "text",
        "phone": "text",
        "portfolio": "text",
        "address": "text",
        "certificate": "text",
        "custom_fields": "text",
        "totalSubmitted": 1,
        "onlineCv": "text",
        "school": "text",
        "totalAssignment": 1,
        "cityId": "text",
        "gender": "P",
        "id": 1,
        "linkedin": "text",
        "statementLetter": "text",
        "assignments": [
          {
            "externalId": "text",
            "link": "text",
            "score": 1,
            "scored": true,
            "submitted": true,
            "title": "text",
            "type": "studio"
          }
        ],
        "bio": "text",
        "city": "text",
        "totalScored": 1
      }
    ],
    "page": 1,
    "perPage": 1,
    "totalItems": 1,
    "totalPages": 1
  },
  "message": "success",
  "status": true
}

Last updated