- 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
general-config store
Developing
POST
/api/operation-portal/general-config-store
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
{
"key": "Default SMS Type",
"value": "Masking",
"short_name": "sms_type"
}
// Student Attendance Type, value = Day Wise, Period Wise(10 Period, Tiffin Break, Assembly)
//HR Attendance Type, value = Locations Based-from Office Location Zone, Remote-From Anywhere, WiFi Based-From Office WiFi Network Only, Device
//Allow Edit(Basic Profile) from Student Portal, value = Yes, No
//Online Payment Method Student Portal & Payment Portal, value = Partial Payment on Subhead, Due Upto Current Date, All Fees with multiple selection
//Is Enable Fees Payment by Web? , value = Yes, No
//Online Admission in Web, value = Yes, No
//Duplicate Roll Allow, value = Yes, No
//Allow Backdated Collection
//Send Receipt Link with Paid SMS?, value = Yes, No
//Real-Time Present SMS?, value = Yes, No
//Default SMS Type, value = Masking, Non-Masking
//Auto SMS in Collection, value = Yes, No
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/operation-portal/general-config-store' \
--header 'Content-Type: application/json' \
--data-raw '{
"key": "Default SMS Type",
"value": "Masking",
"short_name": "sms_type"
}
// Student Attendance Type, value = Day Wise, Period Wise(10 Period, Tiffin Break, Assembly)
//HR Attendance Type, value = Locations Based-from Office Location Zone, Remote-From Anywhere, WiFi Based-From Office WiFi Network Only, Device
//Allow Edit(Basic Profile) from Student Portal, value = Yes, No
//Online Payment Method Student Portal & Payment Portal, value = Partial Payment on Subhead, Due Upto Current Date, All Fees with multiple selection
//Is Enable Fees Payment by Web? , value = Yes, No
//Online Admission in Web, value = Yes, No
//Duplicate Roll Allow, value = Yes, No
//Allow Backdated Collection
//Send Receipt Link with Paid SMS?, value = Yes, No
//Real-Time Present SMS?, value = Yes, No
//Default SMS Type, value = Masking, Non-Masking
//Auto SMS in Collection, value = Yes, No'
Responses
🟢200Success
application/json
Body
object {0}
Example
{
"errors": null,
"message": "Success",
"status_code": 200,
"payload": {
"data": {
"status": "success",
"config": {
"key": "Default SMS Type",
"value": "Non-Masking",
"short_name": "default_sms_type",
"updated_at": "2025-01-30T04:39:03.000000Z",
"created_at": "2025-01-30T04:39:03.000000Z",
"id": 3
}
}
}
}