- 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
bank store
Developing
POST
/api/operation-portal/institute-bank
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
{
"institute_details_id": 1,
"bank_name": "ABC Bank",
"account_name": "John Doe",
"account_no": ["123456789", "987654321", "567890123"]
}
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/institute-bank' \
--header 'Content-Type: application/json' \
--data-raw '{
"institute_details_id": 1,
"bank_name": "ABC Bank",
"account_name": "John Doe",
"account_no": ["123456789", "987654321", "567890123"]
}'
Responses
🟢201Created
application/json
Body
status
stringÂ
required
message
stringÂ
required
Example
{
"errors": null,
"message": "Success",
"status_code": 201,
"payload": {
"data": {
"status": "success",
"message": "Record saved successfully",
"bank": {
"institute_details_id": "1",
"bank_name": "SBL",
"account_name": "test-school",
"account_no": "SBL-7890598",
"updated_at": "2024-11-19T07:03:04.000000Z",
"created_at": "2024-11-19T07:03:04.000000Z",
"id": 3
}
}
}
}