- 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
store
Developing
POST
/api/hr-enrollment
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Header Params
Content-Type
stringÂ
required
Example:
application/json
Body Params application/json
hr_list
array [object {7}]Â
required
type
array [object {2}]Â
required
hr_id
integerÂ
required
hr_name
stringÂ
required
hr_gender
stringÂ
required
hr_religion
stringÂ
required
mobile
stringÂ
required
description
string  | nullÂ
required
Example
{
"hr_list": [
{
"type": [
{
"label": "string",
"name": "string"
}
],
"hr_id": 0,
"hr_name": "string",
"hr_gender": "string",
"hr_religion": "string",
"mobile": "string",
"description": "string"
}
]
}
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-enrollment' \
--header 'Content-Type: application/json' \
--data-raw '{
"hr_list": [
{
"type": [
{
"label": "string",
"name": "string"
}
],
"hr_id": 0,
"hr_name": "string",
"hr_gender": "string",
"hr_religion": "string",
"mobile": "string",
"description": "string"
}
]
}'
Responses
🟢200OK
application/json
Body
object {0}
Example
{}