- Operation Portal
- Auth
- Role and Permission
- Global data
- Merchant
- wallet
- Common API
- Device Map
- Back office
- Institute Portal
- Auth
- Fees Management
- HR Management
- Settings
- Enrollment
- update
- status
- role
- attendance
- hr-basics
- 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
hr-attendance-search
Developing
POST
/api/hr-attendance-search-date-wise
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params multipart/form-data
date
stringÂ
optional
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/hr-attendance-search-date-wise' \
--form 'date=""'
Responses
🟢200Success
application/json
Body
object {0}
Example
{
"errors": null,
"message": "Success",
"status_code": 200,
"payload": {
"data": {
"status": "success",
"without_time": [
{
"id": 1,
"institute_details_id": 1,
"hr_basic_info_id": 3,
"category_name": "teacher",
"shift_name": "day",
"date": "2024-11-02",
"attendance_status": "present",
"in_status": "on time",
"out_status": "just time",
"class_taken": 5,
"created_at": "2024-11-02T07:10:42.000000Z",
"updated_at": "2024-11-02T07:10:42.000000Z"
}
],
"with_time": [
{
"id": 1,
"institute_details_id": 1,
"hr_basic_info_id": 3,
"category_name": "teacher",
"shift_name": "day",
"date": "2024-11-02",
"in_time": "09:10:00",
"out_time": "01:30:00",
"class_taken": 5,
"created_at": "2024-11-02T07:18:40.000000Z",
"updated_at": "2024-11-02T07:18:40.000000Z"
}
]
}
}
}