- Operation Portal
- Auth
- Role and Permission
- Global data
- Merchant
- wallet
- Common API
- Device Map
- Back office
- Institute Portal
- Auth
- Fees Management
- HR Management
- Student Management
- Enrollment
- controller
- Promotion
- Report
- Status
- Update
- Basic info
- Class Info
- indexGET
- Attendance
- Master Settings
- Role and Permission
- Open Portal
- Admission
- Common API
- SMS
- Subject Config
- Shared API
- Admission User Portal
- SPG Server end test
- Public Api
- Payment Portal
- Dont Exec
search
Developing
POST
/api/student-update/basic-info-search
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params multipart/form-data
institute_class_map_id
integerÂ
optional
Example:
19
section_id
integerÂ
required
Example:
39
shift_id
integerÂ
optional
Example:
19
academic_year_id
integerÂ
optional
Example:
2
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://apidev.edufee.online/api/student-update/basic-info-search' \
--form 'institute_class_map_id="19"' \
--form 'section_id="39"' \
--form 'shift_id="19"' \
--form 'academic_year_id="2"'
Responses
🟢200OK
application/json
Body
students
array [object {15}]Â
required
id
integerÂ
required
institute_details_id
integerÂ
required
student_id
integerÂ
required
combinations_pivot_id
integerÂ
required
admission_date
nullÂ
required
academic_session
stringÂ
required
academic_year
stringÂ
required
category
stringÂ
required
type
nullÂ
required
class_roll
integerÂ
required
custom_student_id
stringÂ
required
created_at
stringÂ
required
updated_at
stringÂ
required
student_details
objectÂ
required
guardian_details
objectÂ
required
Example
{
"students": [
{
"id": 0,
"institute_details_id": 0,
"student_id": 0,
"combinations_pivot_id": 0,
"admission_date": null,
"academic_session": "string",
"academic_year": "string",
"category": "string",
"type": null,
"class_roll": 0,
"custom_student_id": "string",
"created_at": "string",
"updated_at": "string",
"student_details": {
"id": 0,
"student_id": 0,
"student_name": "string",
"student_gender": "string",
"student_religion": "string",
"student_nationality": null,
"student_dob": null,
"student_birth_certificate": null,
"student_nid": null,
"student_mobile": null,
"student_email": null,
"student_height": null,
"student_weight": null,
"student_special_disease": null,
"created_at": "string",
"updated_at": "string"
},
"guardian_details": {
"id": 0,
"student_id": 0,
"father_name": "string",
"father_address": null,
"father_mobile": "string",
"father_email": null,
"father_nid": null,
"father_profession": null,
"father_education": null,
"father_income": null,
"father_photo": null,
"mother_name": "string",
"mother_address": null,
"mother_mobile": null,
"mother_email": null,
"mother_nid": null,
"mother_profession": null,
"mother_education": null,
"mother_income": null,
"mother_photo": null,
"gurdian_name": null,
"gurdian_address": null,
"gurdian_mobile": null,
"gurdian_email": null,
"gurdian_nid": null,
"gurdian_profession": null,
"gurdian_education": null,
"gurdian_income": null,
"gurdian_photo": null,
"gurdian_relationship": null,
"created_at": "string",
"updated_at": "string"
}
}
]
}