Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"academic_year_id": 1,
"department_id": 2,
"fund_id": [101, 102, 103],
"account_no": "1234567890"
}
{
"academic_year_id": 1,
"department_id": 2,
"fund_id": [101, 102, 103],
"sslcz_ref_id": "SSL-REF-98765"
}
Request samples
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
application/json {
"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
}
}
}
}
Modified at 2025-03-24 05:54:40