- 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
mapping index
Developing
GET
/api/fees-management/mapping
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
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 GET 'https://apidev.edufee.online/api/fees-management/mapping'
Responses
🟢200OK
application/json
Body
feeMapping
array [object {8}]Â
required
id
integerÂ
required
institute_details_id
integerÂ
required
fee_head_id
integerÂ
required
fee_subhead_id
integerÂ
required
fund_id
integerÂ
required
ledger_id
integerÂ
required
created_at
stringÂ
required
updated_at
stringÂ
required
Example
{
"errors": null,
"message": "Success",
"status_code": 200,
"payload": {
"data": {
"feeHead": [
{
"id": 1,
"name": "Tuition fee"
}
],
"feeSubhead": [
{
"id": 1,
"name": "January"
}
],
"feeMapping": [
{
"id": 1,
"fee_head_id": {
"id": 1,
"name": "Tuition fee"
},
"fee_subhead_id": {
"id": 1,
"name": "January"
}
}
],
"fund": [
{
"id": 1,
"name": "fund one"
}
],
"ledger": [
{
"id": 1,
"account_category_id": {
"id": 1,
"account_category": "Asset Accounts"
},
"account_group_id": {
"id": 1,
"account_category_id": 1,
"account_group": "Cash Account",
"nature": "debit",
"note": "Use Cash Account to track cash or assets that can be converted into cash immediately. Use this also track cash your Institute keeps for occasional expenses, also called petty cash. [ Ledger Example: Cash on Hand, Cash-1, Cash-Rakib, Cash Counter-1 etc.]"
},
"name": "ledger one"
}
],
"fineMapping": [
{
"id": 1,
"fee_head_id": {
"id": 1,
"name": "Tuition fee"
},
"fund_id": {
"id": 1,
"name": "fund one"
},
"ledger_id": {
"id": 1,
"account_category_id": {
"id": 1,
"account_category": "Asset Accounts"
},
"account_group_id": {
"id": 1,
"account_category_id": 1,
"account_group": "Cash Account",
"nature": "debit",
"note": "Use Cash Account to track cash or assets that can be converted into cash immediately. Use this also track cash your Institute keeps for occasional expenses, also called petty cash. [ Ledger Example: Cash on Hand, Cash-1, Cash-Rakib, Cash Counter-1 etc.]"
},
"name": "ledger one"
}
}
],
"opsMapping": [
{
"id": 1,
"institute_id": "A-101",
"institute_name": "Academy Demo School & College",
"fee_head_id": {
"id": 1,
"name": "Tuition fee"
},
"department_id": {
"id": 2,
"name": "english"
},
"gateway": "Bkash",
"bank_account": {
"id": 2,
"institute_id": "A-101",
"institute_name": "Academy Demo School & College",
"username": "01770618567",
"password": "D7DaC<*E*eG",
"app_key": "0vWQuCRGiUX7EPVjQDr0EUAYtc",
"app_secret": "jcUNPBgbcqEDedNKdvE4G1cAK7D3hCjmJccNPZZBq96QIxxwAMEx"
}
}
],
"departments": [
{
"id": 1,
"name": "bangla"
},
{
"id": 2,
"name": "english"
},
{
"id": 3,
"name": "non department"
}
]
}
}
}