- 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
feature create
Developing
POST
/api/operation-portal/feature/create/{submodule_id}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
submodule_id
stringÂ
required
Example:
41
Body Params application/json
object {0}
Example
{
"features": [
{ "name": "Applicants", "key": "applicants" },
{ "name": "Collections", "key": "collections" }
]
}
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/feature/create/41' \
--header 'Content-Type: application/json' \
--data-raw '{
"features": [
{ "name": "Applicants", "key": "applicants" },
{ "name": "Collections", "key": "collections" }
]
}'
Responses
🟢200OK
application/json
Body
object {0}
Example
{
"errors": null,
"message": "Success",
"status_code": 200,
"payload": {
"data": {
"success": true,
"message": "Features created successfully.",
"features": [
{
"name": "Applicants",
"key": "applicants",
"submodule_id": "41",
"updated_at": "2025-05-04T05:36:40.000000Z",
"created_at": "2025-05-04T05:36:40.000000Z",
"id": 37
},
{
"name": "Collections",
"key": "collections",
"submodule_id": "41",
"updated_at": "2025-05-04T05:36:40.000000Z",
"created_at": "2025-05-04T05:36:40.000000Z",
"id": 38
}
]
}
}
}