- 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
- 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
index
Developing
GET
/api/hr-enrollment
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
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/hr-enrollment'
Responses
🟢200OK
application/json
Body
object {0}
Example
{
"errors": null,
"message": "Success",
"status_code": 200,
"payload": {
"data": {
"hr_classification": {
"department": [
{
"id": 1,
"institute_details_id": 1,
"name": "bangla",
"type": "department",
"description": "description"
},
{
"id": 6,
"institute_details_id": 1,
"name": "math",
"type": "department",
"description": null
}
],
"designation": [
{
"id": 2,
"institute_details_id": 1,
"name": "lecturer",
"type": "designation",
"description": "description"
},
{
"id": 7,
"institute_details_id": 1,
"name": "assistant lecturer",
"type": "designation",
"description": null
}
],
"category": [
{
"id": 3,
"institute_details_id": 1,
"name": "teacher",
"type": "category",
"description": "description"
},
{
"id": 8,
"institute_details_id": 1,
"name": "teacher",
"type": "category",
"description": null
}
],
"job_type": [
{
"id": 4,
"institute_details_id": 1,
"name": "permanent",
"type": "job_type",
"description": "description"
},
{
"id": 9,
"institute_details_id": 1,
"name": "contract",
"type": "job_type",
"description": null
}
],
"duty_shift": [
{
"id": 5,
"institute_details_id": 1,
"name": "day",
"type": "duty_shift",
"description": "description"
},
{
"id": 10,
"institute_details_id": 1,
"name": "night",
"type": "duty_shift",
"description": null
}
]
},
"hr_basic_info": {
"current_page": 1,
"data": [
{
"id": 1,
"hr_info_id": 1,
"institute_details_id": 1,
"custom_hr_id": "101",
"name": "Shafiq Ullah",
"name_bangla": null,
"gender": "Male",
"religion": "Islam",
"date_of_birth": null,
"blood_group": null,
"mobile_no": "01834793155",
"email": null,
"photo": null,
"created_at": "2024-10-10T08:12:09.000000Z",
"updated_at": "2024-10-10T08:12:09.000000Z",
"hr_info": {
"id": 1,
"hr_name": "Shafiq Ullah",
"department": "bangla",
"designation": "lecturer",
"category": "teacher",
"job_type": "permanent",
"duty_shift": "day",
"email": null,
"password": null,
"status": "active",
"created_at": "2024-10-10T08:12:09.000000Z",
"updated_at": "2024-10-10T08:12:09.000000Z"
}
},
{
"id": 2,
"hr_info_id": 2,
"institute_details_id": 1,
"custom_hr_id": "102",
"name": "Rahim Ahmed",
"name_bangla": null,
"gender": "Male",
"religion": "Hinduism",
"date_of_birth": null,
"blood_group": null,
"mobile_no": "01712345678",
"email": null,
"photo": null,
"created_at": "2024-10-10T08:12:09.000000Z",
"updated_at": "2024-10-10T08:12:09.000000Z",
"hr_info": {
"id": 2,
"hr_name": "Rahim Ahmed",
"department": "math",
"designation": "assistant lecturer",
"category": "teacher",
"job_type": "contract",
"duty_shift": "night",
"email": null,
"password": null,
"status": "active",
"created_at": "2024-10-10T08:12:09.000000Z",
"updated_at": "2024-10-10T08:12:09.000000Z"
}
}
],
"first_page_url": "http://127.0.0.1:8000/api/hr-enrollment?page=1",
"from": 1,
"last_page": 1,
"last_page_url": "http://127.0.0.1:8000/api/hr-enrollment?page=1",
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "http://127.0.0.1:8000/api/hr-enrollment?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"next_page_url": null,
"path": "http://127.0.0.1:8000/api/hr-enrollment",
"per_page": 10,
"prev_page_url": null,
"to": 2,
"total": 2
}
}
}
}