- Operation Portal
- Auth
- Role and Permission
- Global data
- Merchant
- wallet
- Common API
- Device Map
- Back office
- Institute Portal
- Auth
- Fees Management
- Startup
- Mapping
- Amount Set
- Date setup
- Waiver
- remove
- Quick Collection
- 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
ops mapping
Developing
POST
/api/fees-management/mapping/ops/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
//if spg user
{
"academic_year_id": 1,
"department_id": 2,
"fund_id": [101, 102, 103],
"account_no": "1234567890"
}
//if ssl user
{
"academic_year_id": 1,
"department_id": 2,
"fund_id": [101, 102, 103],
"sslcz_ref_id": "SSL-REF-98765"
}
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/fees-management/mapping/ops/store' \
--header 'Content-Type: application/json' \
--data-raw '//if spg user
{
"academic_year_id": 1,
"department_id": 2,
"fund_id": [101, 102, 103],
"account_no": "1234567890"
}
//if ssl user
{
"academic_year_id": 1,
"department_id": 2,
"fund_id": [101, 102, 103],
"sslcz_ref_id": "SSL-REF-98765"
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{
"errors": null,
"message": "Success",
"status_code": 201,
"payload": {
"data": {
"status": "success",
"message": "Record saved successfully",
"ops_mapping": {
"institute_details_id": "1",
"fee_head_id": "1",
"department_id": "2",
"bank_account": "2",
"gateway": "Bkash",
"updated_at": "2024-11-23T05:43:12.000000Z",
"created_at": "2024-11-23T05:43:12.000000Z",
"id": 1
}
}
}
}