- Operation Portal
- Auth
- Role and Permission
- Global data
- Merchant
- wallet
- Common API
- Device Map
- Back office
- Auth
- Institute
- Payments
- admission
- Global data
- Modules/submodules/features
- Packages
- General Config
- Institute Portal
- Auth
- Fees Management
- HR Management
- Student Management
- 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
store admission fee config
Developing
POST
/api/admission-fee-config
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": 2025,
"department_id": 3,
"class_id": 5,
"group_id": [1, 2],
"shift_id": [1, 2],
"gender": ["male", "female"], //Male Female Other
"religion": ["hinduism", "islam"], //Islam Hinduism Buddhism Christianity Other
"fee_head_id": 8,
"fee_amount": 12000,
"fund_id": [1, 2],
"fund_percentage": [60, 40]
}
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-fee-config' \
--header 'Content-Type: application/json' \
--data-raw '{
"academic_year_id": 2025,
"department_id": 3,
"class_id": 5,
"group_id": [1, 2],
"shift_id": [1, 2],
"gender": ["male", "female"], //Male Female Other
"religion": ["hinduism", "islam"], //Islam Hinduism Buddhism Christianity Other
"fee_head_id": 8,
"fee_amount": 12000,
"fund_id": [1, 2],
"fund_percentage": [60, 40]
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2025-06-23 09:14:16