- Operation Portal
- Back office
- Institute Portal
- Auth
- Fees Management
- HR Management
- Student Management
- Master Settings
- Role and Permission
- Open Portal
- Admission
- Settings
- Link Generate
- class setup
- Subject setup
- admission Config
- basic setup
- report
- fee config
- admission-lottery-generatePOST
- admission-lottery-listPOST
- Common API
- SMS
- Subject Config
- Shared API
- Admission User Portal
- SPG Server end test
- Public Api
- Payment Portal
- Dont Exec
store
Developing
POST
/api/admission-subject-setup
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
object {0}
Example
{
"academic_year_id": 6,
"department_id": 1,
"class_id": 35,
"group_id": 37,
"shift_id": 37,
"compulsory": [
{
"institute_subject_id": 10,
"subject_code": 101,
"subject_name": "Bangla"
},
{
"institute_subject_id": 11,
"subject_code": 102,
"subject_name": "English"
}
],
"group_base": [
{
"institute_subject_id": 12,
"subject_code": 201,
"subject_name": "Biology"
}
],
"uncountable": [],
"choosable": [],
"class_name": "nine",
"group_name": "science",
"status": "active",
"set_name": "science-1"
}
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/admission-subject-setup' \
--header 'Content-Type: application/json' \
--data-raw '{
"academic_year_id": 6,
"department_id": 1,
"class_id": 35,
"group_id": 37,
"shift_id": 37,
"compulsory": [
{
"institute_subject_id": 10,
"subject_code": 101,
"subject_name": "Bangla"
},
{
"institute_subject_id": 11,
"subject_code": 102,
"subject_name": "English"
}
],
"group_base": [
{
"institute_subject_id": 12,
"subject_code": 201,
"subject_name": "Biology"
}
],
"uncountable": [],
"choosable": [],
"class_name": "nine",
"group_name": "science",
"status": "active",
"set_name": "science-1"
}'
Responses
🟢200OK
application/json
Body
object {0}
Example
{
"errors": null,
"message": "Success",
"status_code": 201,
"payload": {
"data": {
"status": "success",
"message": "Record saved successfully",
"data": {
"institute_details_id": "9",
"academic_year_id": "6",
"department_id": "1",
"class_id": "35",
"group_id": "37",
"class_name": "nine",
"group_name": "science",
"compulsory": "[\"Bangla First Paper\",\"Bangla Second Paper\"]",
"group_base": "[\"Biology\",\"Higher Mathematics\"]",
"uncountable": "[\"Agriculture\"]",
"choosable": "[\"Computer\"]",
"status": "active",
"updated_at": "2025-06-15T13:46:11.000000Z",
"created_at": "2025-06-15T13:46:11.000000Z",
"id": 1
}
}
}
}
Modified at 2025-06-23 09:13:30