Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"institute_details_id": 1,
"bank_name": "National Bank",
"account_details": [
{
"account_name": "Operations Account",
"account_no": "1234567890"
},
{
"account_name": "Savings Account",
"account_no": "9876543210"
}
]
}
Request Code Samples
curl --location --request POST 'https://apidev.edufee.online/api/operation-portal/institute-bank' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"institute_details_id": 1,
"bank_name": "National Bank",
"account_details": [
{
"account_name": "Operations Account",
"account_no": "1234567890"
},
{
"account_name": "Savings Account",
"account_no": "9876543210"
}
]
}'
Responses
application/json {
"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
}
}
}
}
Modified at 2025-07-27 15:20:30