Get School Students List
get school student list
Authorizations
AuthorizationstringRequired
Query parameters
schoolIdintegerOptional
id of school
searchstringOptional
search by name or email
orderinteger · enumOptionalPossible values:
ordering data
pageintegerOptional
page number, default: 1
pageSizeintegerOptional
page size, default: 10
Responses
200
Response
application/json
get
/v1/school/student/listGET /v1/school/student/list HTTP/1.1
Host: services.alkamedia.id
Authorization: YOUR_API_KEY
Accept: */*
200
Response
{
"data": {
"perPage": 1,
"totalItems": 1,
"totalPages": 1,
"items": [
{
"id": 1,
"school": "text",
"onlineCv": "text",
"bio": "text",
"email": "text",
"gender": "P",
"github": "text",
"linkedin": "text",
"name": "text",
"address": "text",
"certificate": "text",
"photo": "text",
"city": "text",
"cityId": 1,
"phone": "text",
"portfolio": "text",
"statementLetter": "text",
"transcriptFile": "text"
}
],
"page": 1
},
"message": "success",
"status": true
}Last updated