- 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
edit
Developing
GET
/api/operation-portal/roles/{id}/edit
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
id
stringÂ
required
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/operation-portal/roles//edit'
Responses
🟢200OK
application/json
Body
object {0}
Example
{
"errors": null,
"message": "Success",
"status_code": 200,
"payload": {
"data": {
"data": {
"role": {
"id": 1,
"name": "Manager",
"guard_name": "admin-api",
"created_at": "2025-05-06T09:04:21.000000Z",
"updated_at": "2025-05-06T09:04:21.000000Z",
"institute_details_id": null,
"permissions": [
{
"id": 25,
"name": "institute.package.details",
"guard_name": "admin-api",
"created_at": "2025-05-05T05:35:38.000000Z",
"updated_at": "2025-05-06T08:48:08.000000Z",
"category": "Institute Management",
"sub_category": "Packages",
"child_category": null,
"show_name": "View",
"pivot": {
"role_id": 1,
"permission_id": 25
}
},
{
"id": 26,
"name": "package.store",
"guard_name": "admin-api",
"created_at": "2025-05-05T05:35:38.000000Z",
"updated_at": "2025-05-06T08:48:08.000000Z",
"category": "Institute Management",
"sub_category": "Packages",
"child_category": null,
"show_name": "Store",
"pivot": {
"role_id": 1,
"permission_id": 26
}
}
]
},
"permissions": [
"institute.package.details",
"package.store"
]
}
}
}
}