- Operation Portal
- Auth
- Role and Permission
- Global data
- Merchant
- wallet
- Common API
- Device Map
- Back office
- Institute Portal
- Auth
- Fees Management
- HR Management
- Student Management
- Master Settings
- class_details
- Institue
- core institute
- department
- General Config
- 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
Shifts by Dept and Class
Developing
GET
/api/department/{department_id}/class/{class_id}/shifts
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
department_id
stringÂ
required
Example:
2
class_id
stringÂ
required
Example:
35
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/department/2/class/35/shifts'
Responses
🟢200OK
application/json
Body
errors
nullÂ
required
message
stringÂ
required
status_code
integerÂ
required
payload
objectÂ
required
data
objectÂ
required
Example
{
"errors": null,
"message": "string",
"status_code": 0,
"payload": {
"data": {
"success": true,
"shifts": [
{
"id": 0,
"core_category_id": 0,
"core_category_name": "string",
"core_subcategory_name": "string"
}
]
}
}
}
Modified at 2025-06-23 10:56:01