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": "ABC Bank",
"account_name": "John Doe",
"account_no": ["123456789", "987654321", "567890123"]
}
Request samples
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
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-03-23 06:11:22