Introduction
The Falcon Management ERP System is a fully integrated platform designed specifically for businesses that manage falcon feeding, medical care, training operations, and cost management. The system centralizes all operational data, automates workflows, and provides a unified dashboard that enables managers, veterinarians, trainers, and finance teams to collaborate seamlessly.
Built to support precision, traceability, and efficiency, the ERP ensures every falcon receives optimal care while giving management full visibility across all departments.
The Falcon Management ERP System empowers organizations to professionally manage every stage of falcon care—from feeding and health treatment to training and financial analysis. It improves efficiency, reduces operational errors, supports cost control, and ensures that each falcon receives the best possible care in a structured, measurable way.
The Falcon ERP API provides unified access to all operations related to feeding, medical care, training, and costing.
It allows external systems to manage falcon profiles, record daily activities, track medical treatments, schedule training sessions, and calculate operational costs.
This API ensures consistent data flow across all departments and supports smooth integration with mobile apps, dashboards, and third-party services.
Access Requirements
Before using this API, you must obtain your App Key, Secret Key, and the implementation details for X-SIGNATURE from the system administrator.
All API requests must include these credentials; any request without them will be rejected.
https://falcon-erp-backend-dev.dafagate.com/api/v1
Common Errors
A guide to consistent error response formats used across all endpoints.
Error 401 – Unauthorized
The request requires authentication. The user is either not logged in or does not have a valid access token.
{
"message": "Unauthorized",
"success": false
}
Error 403 – Forbidden
The request was understood, but the server refuses to authorize it. The user does not have permission to perform this action.
{
"message": "You are not allowed to perform this action",
"success": false
}
Error 404 – Not Found
The requested resource could not be found on the server. It may have been moved or deleted.
{
"message": "Resource not found",
"success": false
}
Error 405 – Method Not Allowed
The HTTP method used is not supported for this endpoint. Check the allowed request methods.
{
"message": "Method not allowed",
"success": false
}
Error 419 – Page Expired
The session or CSRF token has expired. Please refresh the page and try again.
{
"message": "Page Expired",
"success": false
}
Error 422 – Unprocessable Entity
The server understood the request, but the submitted data was invalid. Please review and correct the errors.(Errors may be return array or string)
{
"errors": [],
"message": "Validation Error",
"success": false
}
Error 500 – Internal Server Error
An unexpected error occurred on the server. Please try again later or contact support.
{
"message": "Server Error",
"success": false
}
Admin Login
Authentication
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| step | integer | 1 |
| string | admin@base.com | |
| password | string | P@ssw0rd |
{
"data": {
"id": 1,
"name": "Admin",
"email": "admin@base.com",
"phone": "000000000000",
"token": "2|TtEcoXb3iuTXQGeZBdnNUAqqFxbgpRD9YX6REIKV39195f47",
"avatar": null,
"otp_pin": null,
"password": "$2y$12$.wqIwCjboCtt4q3keK9hE.tq0hsC92HqisopgBpIiEQLkUh8gqyXe",
"is_active": 1,
"otp_token": null,
"created_at": "2026-03-15",
"expires_in": null,
"token_type": "Bearer",
"last_login_at": null,
"otp_expired_at": null
},
"message": "Welcome Admin",
"success": true
}
Admin Logout
Authentication
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Good by.",
"success": true
}
Forget Password Request
Authentication
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| string | admin@base.com |
{
"data": {
"token": "SJXwJKTiW6hxnFSn7i7IyScUUYpIQSCM9o5L4qmZBgcHlaNBzQKpe05QPKNrbPIw"
},
"message": "Please check your email",
"success": true
}
Verify OTP
Authentication
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| otp | string | 123456 |
| string | admin@base.com | |
| token | string | SJXwJKTiW6hxnFSn7i7IyScUUYpIQSCM9o5L4qmZBgcHlaNBzQKpe05QPKNrbPIw |
{
"data": [],
"message": "Your Otp Verified successfully.",
"success": true
}
Reset Password
Authentication
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| otp | string | 123456 |
| string | admin@base.com | |
| token | string | SJXwJKTiW6hxnFSn7i7IyScUUYpIQSCM9o5L4qmZBgcHlaNBzQKpe05QPKNrbPIw |
| password | string | P@ssw0rd |
{
"data": [],
"message": "Password reset successfully.",
"success": true
}
Create Admin
Create a new Admin.
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| name | string | Admin 2 |
| string | admin2@gmail.com | |
| phone | string | 01112226666 |
| roles | array | [{"role_id":1},{"role_id":2}] |
| password | string | P@ss0rd |
{
"data": {
"id": 2,
"name": "Admin 2",
"email": "admin2@gmail.com",
"phone": "01112226666",
"password": "$2y$12$o72iAP4yjCCQHFGtuQoOKu890d2D.v4fLxOT37NatZJIsCSACA6Hy",
"created_at": "2026-03-15T09:50:48.000000Z",
"updated_at": "2026-03-15T09:50:48.000000Z"
},
"message": "Data inserted successfully.",
"success": true
}
Get Admin List
Retrieve a list of Admin.
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [
{
"id": 1,
"name": "Admin",
"email": "admin@base.com",
"phone": "000000000000",
"avatar": null,
"otp_pin": null,
"password": "$2y$12$Gqtfxk86qrFKDdTibggjDOhonlua0QN7rd8250KRM2L8K\/jJT\/pmO",
"is_active": 1,
"otp_token": null,
"created_at": "2026-03-15",
"last_login_at": null,
"otp_expired_at": null
},
{
"id": 2,
"name": "Admin 2",
"email": "admin2@gmail.com",
"phone": "01112226666",
"avatar": null,
"otp_pin": null,
"password": "$2y$12$o72iAP4yjCCQHFGtuQoOKu890d2D.v4fLxOT37NatZJIsCSACA6Hy",
"is_active": 1,
"otp_token": null,
"created_at": "2026-03-15",
"last_login_at": null,
"otp_expired_at": null
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 2,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Get Admin Details
Retrieve Admin details.
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 1,
"name": "Admin",
"email": "admin@base.com",
"phone": "000000000000",
"avatar": null,
"otp_pin": null,
"password": "$2y$12$Gqtfxk86qrFKDdTibggjDOhonlua0QN7rd8250KRM2L8K\/jJT\/pmO",
"is_active": 1,
"otp_token": null,
"created_at": "2026-03-15",
"last_login_at": null,
"otp_expired_at": null
},
"message": "Data retrieved successfully.",
"success": true
}
Update Admin
Update an existing Admin.
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| id | integer | 2 |
| name | string | Admin 2 |
| string | admin2@gmail.com | |
| phone | string | 01112226666 |
| roles | array | [{"role_id":1},{"role_id":2}] |
| password | string | P@ss0rd |
{
"data": {
"id": 2,
"name": "Admin 2",
"email": "admin2@gmail.com",
"phone": "01112226666",
"avatar": null,
"password": "$2y$12$Po8\/RRHeHyPxd4Njkykw7OkfR.BjhsZID4BYJAQiGBEpzxo8MLkES",
"is_active": 1,
"created_at": "2026-03-15T09:50:48.000000Z",
"deleted_at": null,
"updated_at": "2026-03-15T09:50:49.000000Z",
"last_login_at": null,
"remember_token": null,
"change_password_token": null,
"change_password_expired_at": null
},
"message": "Data updated successfully.",
"success": true
}
Toggle Admin Status
Switch the Admin status between active and inactive.
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 2,
"name": "Admin 2",
"email": "admin2@gmail.com",
"phone": "01112226666",
"avatar": null,
"password": "$2y$12$Po8\/RRHeHyPxd4Njkykw7OkfR.BjhsZID4BYJAQiGBEpzxo8MLkES",
"is_active": false,
"created_at": "2026-03-15T09:50:48.000000Z",
"deleted_at": null,
"updated_at": "2026-03-15T09:50:49.000000Z",
"last_login_at": null,
"remember_token": null,
"change_password_token": null,
"change_password_expired_at": null
},
"message": "Data updated successfully.",
"success": true
}
Delete Admin
Delete a Admin.
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}
Get Deleted Admin
List deleted Admin.
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [
{
"id": 2,
"name": "Admin 2",
"email": "admin2@gmail.com",
"phone": "01112226666",
"avatar": null,
"otp_pin": null,
"password": "$2y$12$Po8\/RRHeHyPxd4Njkykw7OkfR.BjhsZID4BYJAQiGBEpzxo8MLkES",
"is_active": 0,
"otp_token": null,
"created_at": "2026-03-15",
"last_login_at": null,
"otp_expired_at": null
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 1,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Restore Admin
Restore deleted Admin.
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 2,
"name": "Admin 2",
"email": "admin2@gmail.com",
"phone": "01112226666",
"avatar": null,
"password": "$2y$12$Po8\/RRHeHyPxd4Njkykw7OkfR.BjhsZID4BYJAQiGBEpzxo8MLkES",
"is_active": 0,
"created_at": "2026-03-15T09:50:48.000000Z",
"deleted_at": null,
"updated_at": "2026-03-15T09:50:49.000000Z",
"last_login_at": null,
"remember_token": null,
"change_password_token": null,
"change_password_expired_at": null
},
"message": "Data updated successfully.",
"success": true
}
Permanently Delete Admin
Force delete Admin.
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}
Create Role
Create a new Role.
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| name | array | {"ar":"\u0623\u062e\u062a\u0628\u0627\u0631","en":"Test Role"} |
| permissions | array | [{"model_id":1,"permission_id":1}] |
{
"data": {
"id": 3,
"created_at": "2026-03-15T09:50:50.000000Z",
"updated_at": "2026-03-15T09:50:50.000000Z"
},
"message": "Data inserted successfully.",
"success": true
}
Get Role List
Retrieve a list of Role.
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [
{
"id": 1,
"name": "Default Role",
"is_active": true,
"created_at": "2026-03-15T09:50:45.000000Z",
"permissions": [
{
"id": 1,
"name": "dashboard-fetch"
},
{
"id": 2,
"name": "roles-fetch"
},
{
"id": 3,
"name": "roles-create"
},
{
"id": 4,
"name": "roles-read"
},
{
"id": 5,
"name": "roles-update"
},
{
"id": 6,
"name": "roles-delete"
},
{
"id": 7,
"name": "admins-fetch"
},
{
"id": 8,
"name": "admins-create"
},
{
"id": 9,
"name": "admins-read"
},
{
"id": 10,
"name": "admins-update"
},
{
"id": 11,
"name": "admins-delete"
}
]
},
{
"id": 2,
"name": "Super Admin Role ",
"is_active": true,
"created_at": "2026-03-15T09:50:45.000000Z",
"permissions": [
{
"id": 12,
"name": "dashboard-fetch"
},
{
"id": 13,
"name": "roles-fetch"
},
{
"id": 14,
"name": "roles-create"
},
{
"id": 15,
"name": "roles-read"
},
{
"id": 16,
"name": "roles-update"
},
{
"id": 17,
"name": "roles-delete"
},
{
"id": 18,
"name": "admins-fetch"
},
{
"id": 19,
"name": "admins-create"
},
{
"id": 20,
"name": "admins-read"
},
{
"id": 21,
"name": "admins-update"
},
{
"id": 22,
"name": "admins-delete"
}
]
},
{
"id": 3,
"name": "Test Role",
"is_active": true,
"created_at": "2026-03-15T09:50:50.000000Z",
"permissions": [
{
"id": 23,
"name": "dashboard_fetch"
}
]
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 3,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Get Role Details
Retrieve Role details.
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 1,
"is_active": 1,
"translate": [
{
"id": 1,
"lang": "ar",
"name": "دور تقليدى",
"role_id": 1,
"created_at": "2026-03-15T09:50:45.000000Z",
"deleted_at": null,
"updated_at": "2026-03-15T09:50:45.000000Z"
},
{
"id": 2,
"lang": "en",
"name": "Default Role",
"role_id": 1,
"created_at": "2026-03-15T09:50:45.000000Z",
"deleted_at": null,
"updated_at": "2026-03-15T09:50:45.000000Z"
}
],
"created_at": "2026-03-15T09:50:45.000000Z",
"permissions": [
{
"id": 1,
"name": "dashboard-fetch",
"role_id": 1,
"model_id": 1,
"created_at": "2026-03-15T09:50:45.000000Z",
"deleted_at": null,
"updated_at": "2026-03-15T09:50:45.000000Z",
"permission_id": 1
},
{
"id": 2,
"name": "roles-fetch",
"role_id": 1,
"model_id": 2,
"created_at": "2026-03-15T09:50:45.000000Z",
"deleted_at": null,
"updated_at": "2026-03-15T09:50:45.000000Z",
"permission_id": 1
},
{
"id": 3,
"name": "roles-create",
"role_id": 1,
"model_id": 2,
"created_at": "2026-03-15T09:50:45.000000Z",
"deleted_at": null,
"updated_at": "2026-03-15T09:50:45.000000Z",
"permission_id": 2
},
{
"id": 4,
"name": "roles-read",
"role_id": 1,
"model_id": 2,
"created_at": "2026-03-15T09:50:45.000000Z",
"deleted_at": null,
"updated_at": "2026-03-15T09:50:45.000000Z",
"permission_id": 3
},
{
"id": 5,
"name": "roles-update",
"role_id": 1,
"model_id": 2,
"created_at": "2026-03-15T09:50:45.000000Z",
"deleted_at": null,
"updated_at": "2026-03-15T09:50:45.000000Z",
"permission_id": 4
},
{
"id": 6,
"name": "roles-delete",
"role_id": 1,
"model_id": 2,
"created_at": "2026-03-15T09:50:45.000000Z",
"deleted_at": null,
"updated_at": "2026-03-15T09:50:45.000000Z",
"permission_id": 5
},
{
"id": 7,
"name": "admins-fetch",
"role_id": 1,
"model_id": 3,
"created_at": "2026-03-15T09:50:45.000000Z",
"deleted_at": null,
"updated_at": "2026-03-15T09:50:45.000000Z",
"permission_id": 1
},
{
"id": 8,
"name": "admins-create",
"role_id": 1,
"model_id": 3,
"created_at": "2026-03-15T09:50:45.000000Z",
"deleted_at": null,
"updated_at": "2026-03-15T09:50:45.000000Z",
"permission_id": 2
},
{
"id": 9,
"name": "admins-read",
"role_id": 1,
"model_id": 3,
"created_at": "2026-03-15T09:50:45.000000Z",
"deleted_at": null,
"updated_at": "2026-03-15T09:50:45.000000Z",
"permission_id": 3
},
{
"id": 10,
"name": "admins-update",
"role_id": 1,
"model_id": 3,
"created_at": "2026-03-15T09:50:45.000000Z",
"deleted_at": null,
"updated_at": "2026-03-15T09:50:45.000000Z",
"permission_id": 4
},
{
"id": 11,
"name": "admins-delete",
"role_id": 1,
"model_id": 3,
"created_at": "2026-03-15T09:50:45.000000Z",
"deleted_at": null,
"updated_at": "2026-03-15T09:50:45.000000Z",
"permission_id": 5
}
]
},
"message": "Data retrieved successfully.",
"success": true
}
Update Role
Update an existing Role.
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| id | integer | 3 |
| name | array | {"ar":"\u0623\u062e\u062a\u0628\u0627\u0631","en":"Test Role"} |
| permissions | array | [{"model_id":1,"permission_id":1}] |
{
"data": {
"id": 3,
"is_active": 1,
"created_at": "2026-03-15T09:50:50.000000Z",
"deleted_at": null,
"updated_at": "2026-03-15T09:50:50.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Toggle Role Status
Switch the Role status between active and inactive.
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 3,
"is_active": false,
"created_at": "2026-03-15T09:50:50.000000Z",
"deleted_at": null,
"updated_at": "2026-03-15T09:50:50.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Delete Role
Delete a Role.
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}
Get Deleted Role
List deleted Role.
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [
{
"id": 3,
"name": "Test Role",
"is_active": false,
"created_at": "2026-03-15T09:50:50.000000Z",
"permissions": [
{
"id": 23,
"name": "dashboard_fetch"
}
]
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 1,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Restore Role
Restore deleted Role.
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 1,
"is_active": 1,
"created_at": "2026-03-15T09:50:45.000000Z",
"deleted_at": null,
"updated_at": "2026-03-15T09:50:45.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Permanently Delete Role
Force delete Role.
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}
Create Eggs Health Status
Create Eggs Health Status
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 1,
"type": "eggs-health-status",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"created_at": "15-03-2026 09:50:51",
"setting_id": null,
"updated_at": "2026-03-15T09:50:51.000000Z"
},
"message": "Data inserted successfully.",
"success": true
}
Get Eggs Health Status List
Get Eggs Health Status List
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Query Parameters
| Field/Name | Type | Examples |
|---|---|---|
| page | integer | 1 |
| per_page | integer | 10 |
{
"data": [
{
"id": 1,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 1,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Show Single Eggs Health Status
Show Single Eggs Health Status
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 1,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
},
"message": "Data retrieved successfully.",
"success": true
}
Update Eggs Health Status
Update Eggs Health Status
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| id | integer | 1 |
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 1,
"data": null,
"type": "eggs-health-status",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": 1,
"created_at": "15-03-2026 09:50:51",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:51.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Active Or InActive Eggs Health Status
Update Eggs Health Status
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 1,
"data": null,
"type": "eggs-health-status",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": false,
"created_at": "15-03-2026 09:50:51",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:54.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Delete Eggs Health Status
Delete Eggs Health Status
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}
Create Eggs Reason
Create Eggs Reason
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 2,
"type": "eggs-reason",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"created_at": "15-03-2026 09:50:51",
"setting_id": null,
"updated_at": "2026-03-15T09:50:51.000000Z"
},
"message": "Data inserted successfully.",
"success": true
}
Get Eggs Reason List
Get Eggs Reason List
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Query Parameters
| Field/Name | Type | Examples |
|---|---|---|
| page | integer | 1 |
| per_page | integer | 10 |
{
"data": [
{
"id": 2,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 1,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Show Single Eggs Reason
Show Single Eggs Reason
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 2,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
},
"message": "Data retrieved successfully.",
"success": true
}
Update Eggs Reason
Update Eggs Reason
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| id | integer | 2 |
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 2,
"data": null,
"type": "eggs-reason",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": 1,
"created_at": "15-03-2026 09:50:51",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:51.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Active Or InActive Eggs Reason
Update Eggs Reason
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 2,
"data": null,
"type": "eggs-reason",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": false,
"created_at": "15-03-2026 09:50:51",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:55.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Delete Eggs Reason
Delete Eggs Reason
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}
Create Falcon Species
Create Falcon Species
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 3,
"type": "falcon-species",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"created_at": "15-03-2026 09:50:51",
"setting_id": null,
"updated_at": "2026-03-15T09:50:51.000000Z"
},
"message": "Data inserted successfully.",
"success": true
}
Get Falcon Species List
Get Falcon Species List
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Query Parameters
| Field/Name | Type | Examples |
|---|---|---|
| page | integer | 1 |
| per_page | integer | 10 |
{
"data": [
{
"id": 3,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 1,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Show Single Falcon Species
Show Single Falcon Species
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 3,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
},
"message": "Data retrieved successfully.",
"success": true
}
Update Falcon Species
Update Falcon Species
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| id | integer | 3 |
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 3,
"data": null,
"type": "falcon-species",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": 1,
"created_at": "15-03-2026 09:50:51",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:51.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Active Or InActive Falcon Species
Update Falcon Species
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 3,
"data": null,
"type": "falcon-species",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": false,
"created_at": "15-03-2026 09:50:51",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:55.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Delete Falcon Species
Delete Falcon Species
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}
Create Falcon Gender
Create Falcon Gender
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 4,
"type": "falcon-gender",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"created_at": "15-03-2026 09:50:51",
"setting_id": null,
"updated_at": "2026-03-15T09:50:51.000000Z"
},
"message": "Data inserted successfully.",
"success": true
}
Get Falcon Gender List
Get Falcon Gender List
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Query Parameters
| Field/Name | Type | Examples |
|---|---|---|
| page | integer | 1 |
| per_page | integer | 10 |
{
"data": [
{
"id": 4,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 1,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Show Single Falcon Gender
Show Single Falcon Gender
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 4,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
},
"message": "Data retrieved successfully.",
"success": true
}
Update Falcon Gender
Update Falcon Gender
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| id | integer | 4 |
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 4,
"data": null,
"type": "falcon-gender",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": 1,
"created_at": "15-03-2026 09:50:51",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:51.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Active Or InActive Falcon Gender
Update Falcon Gender
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 4,
"data": null,
"type": "falcon-gender",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": false,
"created_at": "15-03-2026 09:50:51",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:55.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Delete Falcon Gender
Delete Falcon Gender
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}
Create Falcon Age
Create Falcon Age
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 5,
"type": "falcon-age",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"created_at": "15-03-2026 09:50:52",
"setting_id": null,
"updated_at": "2026-03-15T09:50:52.000000Z"
},
"message": "Data inserted successfully.",
"success": true
}
Get Falcon Age List
Get Falcon Age List
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Query Parameters
| Field/Name | Type | Examples |
|---|---|---|
| page | integer | 1 |
| per_page | integer | 10 |
{
"data": [
{
"id": 5,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 1,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Show Single Falcon Age
Show Single Falcon Age
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 5,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
},
"message": "Data retrieved successfully.",
"success": true
}
Update Falcon Age
Update Falcon Age
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| id | integer | 5 |
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 5,
"data": null,
"type": "falcon-age",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": 1,
"created_at": "15-03-2026 09:50:52",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:52.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Active Or InActive Falcon Age
Update Falcon Age
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 5,
"data": null,
"type": "falcon-age",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": false,
"created_at": "15-03-2026 09:50:52",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:55.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Delete Falcon Age
Delete Falcon Age
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}
Create Falcon Id
Create Falcon Id
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 6,
"type": "falcon-id",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"created_at": "15-03-2026 09:50:52",
"setting_id": null,
"updated_at": "2026-03-15T09:50:52.000000Z"
},
"message": "Data inserted successfully.",
"success": true
}
Get Falcon Id List
Get Falcon Id List
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Query Parameters
| Field/Name | Type | Examples |
|---|---|---|
| page | integer | 1 |
| per_page | integer | 10 |
{
"data": [
{
"id": 6,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 1,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Show Single Falcon Id
Show Single Falcon Id
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 6,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
},
"message": "Data retrieved successfully.",
"success": true
}
Update Falcon Id
Update Falcon Id
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| id | integer | 6 |
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 6,
"data": null,
"type": "falcon-id",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": 1,
"created_at": "15-03-2026 09:50:52",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:52.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Active Or InActive Falcon Id
Update Falcon Id
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 6,
"data": null,
"type": "falcon-id",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": false,
"created_at": "15-03-2026 09:50:52",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:55.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Delete Falcon Id
Delete Falcon Id
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}
Create Falcon Color
Create Falcon Color
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 7,
"type": "falcon-color",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"created_at": "15-03-2026 09:50:52",
"setting_id": null,
"updated_at": "2026-03-15T09:50:52.000000Z"
},
"message": "Data inserted successfully.",
"success": true
}
Get Falcon Color List
Get Falcon Color List
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Query Parameters
| Field/Name | Type | Examples |
|---|---|---|
| page | integer | 1 |
| per_page | integer | 10 |
{
"data": [
{
"id": 7,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 1,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Show Single Falcon Color
Show Single Falcon Color
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 7,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
},
"message": "Data retrieved successfully.",
"success": true
}
Update Falcon Color
Update Falcon Color
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| id | integer | 7 |
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 7,
"data": null,
"type": "falcon-color",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": 1,
"created_at": "15-03-2026 09:50:52",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:52.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Active Or InActive Falcon Color
Update Falcon Color
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 7,
"data": null,
"type": "falcon-color",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": false,
"created_at": "15-03-2026 09:50:52",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:56.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Delete Falcon Color
Delete Falcon Color
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}
Create Falcon Behavior
Create Falcon Behavior
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 8,
"type": "falcon-behavior",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"created_at": "15-03-2026 09:50:52",
"setting_id": null,
"updated_at": "2026-03-15T09:50:52.000000Z"
},
"message": "Data inserted successfully.",
"success": true
}
Get Falcon Behavior List
Get Falcon Behavior List
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Query Parameters
| Field/Name | Type | Examples |
|---|---|---|
| page | integer | 1 |
| per_page | integer | 10 |
{
"data": [
{
"id": 8,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 1,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Show Single Falcon Behavior
Show Single Falcon Behavior
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 8,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
},
"message": "Data retrieved successfully.",
"success": true
}
Update Falcon Behavior
Update Falcon Behavior
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| id | integer | 8 |
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 8,
"data": null,
"type": "falcon-behavior",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": 1,
"created_at": "15-03-2026 09:50:52",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:52.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Active Or InActive Falcon Behavior
Update Falcon Behavior
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 8,
"data": null,
"type": "falcon-behavior",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": false,
"created_at": "15-03-2026 09:50:52",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:56.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Delete Falcon Behavior
Delete Falcon Behavior
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}
Create Falcon Reason
Create Falcon Reason
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 9,
"type": "falcon-reason",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"created_at": "15-03-2026 09:50:52",
"setting_id": null,
"updated_at": "2026-03-15T09:50:52.000000Z"
},
"message": "Data inserted successfully.",
"success": true
}
Get Falcon Reason List
Get Falcon Reason List
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Query Parameters
| Field/Name | Type | Examples |
|---|---|---|
| page | integer | 1 |
| per_page | integer | 10 |
{
"data": [
{
"id": 9,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 1,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Show Single Falcon Reason
Show Single Falcon Reason
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 9,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
},
"message": "Data retrieved successfully.",
"success": true
}
Update Falcon Reason
Update Falcon Reason
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| id | integer | 9 |
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 9,
"data": null,
"type": "falcon-reason",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": 1,
"created_at": "15-03-2026 09:50:52",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:52.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Active Or InActive Falcon Reason
Update Falcon Reason
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 9,
"data": null,
"type": "falcon-reason",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": false,
"created_at": "15-03-2026 09:50:52",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:56.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Delete Falcon Reason
Delete Falcon Reason
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}
Create Feeding Category
Create Feeding Category
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 10,
"type": "feeding-category",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"created_at": "15-03-2026 09:50:52",
"setting_id": null,
"updated_at": "2026-03-15T09:50:52.000000Z"
},
"message": "Data inserted successfully.",
"success": true
}
Get Feeding Category List
Get Feeding Category List
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Query Parameters
| Field/Name | Type | Examples |
|---|---|---|
| page | integer | 1 |
| per_page | integer | 10 |
{
"data": [
{
"id": 10,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 1,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Show Single Feeding Category
Show Single Feeding Category
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 10,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
},
"message": "Data retrieved successfully.",
"success": true
}
Update Feeding Category
Update Feeding Category
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| id | integer | 10 |
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 10,
"data": null,
"type": "feeding-category",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": 1,
"created_at": "15-03-2026 09:50:52",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:52.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Active Or InActive Feeding Category
Update Feeding Category
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 10,
"data": null,
"type": "feeding-category",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": false,
"created_at": "15-03-2026 09:50:52",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:56.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Delete Feeding Category
Delete Feeding Category
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}
Create Feeding Meals Type
Create Feeding Meals Type
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 12,
"type": "feeding-meals-type",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"created_at": "15-03-2026 09:50:52",
"setting_id": null,
"updated_at": "2026-03-15T09:50:52.000000Z"
},
"message": "Data inserted successfully.",
"success": true
}
Get Feeding Meals Type List
Get Feeding Meals Type List
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Query Parameters
| Field/Name | Type | Examples |
|---|---|---|
| page | integer | 1 |
| per_page | integer | 10 |
{
"data": [
{
"id": 12,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 1,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Show Single Feeding Meals Type
Show Single Feeding Meals Type
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 12,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
},
"message": "Data retrieved successfully.",
"success": true
}
Update Feeding Meals Type
Update Feeding Meals Type
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| id | integer | 12 |
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 12,
"data": null,
"type": "feeding-meals-type",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": 1,
"created_at": "15-03-2026 09:50:52",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:52.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Active Or InActive Feeding Meals Type
Update Feeding Meals Type
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 12,
"data": null,
"type": "feeding-meals-type",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": false,
"created_at": "15-03-2026 09:50:52",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:57.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Delete Feeding Meals Type
Delete Feeding Meals Type
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}
Create Feeding Unit
Create Feeding Unit
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 11,
"type": "feeding-unit",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"created_at": "15-03-2026 09:50:52",
"setting_id": null,
"updated_at": "2026-03-15T09:50:52.000000Z"
},
"message": "Data inserted successfully.",
"success": true
}
Get Feeding Unit List
Get Feeding Unit List
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Query Parameters
| Field/Name | Type | Examples |
|---|---|---|
| page | integer | 1 |
| per_page | integer | 10 |
{
"data": [
{
"id": 11,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 1,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Show Single Feeding Unit
Show Single Feeding Unit
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 11,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
},
"message": "Data retrieved successfully.",
"success": true
}
Update Feeding Unit
Update Feeding Unit
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| id | integer | 11 |
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 11,
"data": null,
"type": "feeding-unit",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": 1,
"created_at": "15-03-2026 09:50:52",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:52.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Active Or InActive Feeding Unit
Update Feeding Unit
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 11,
"data": null,
"type": "feeding-unit",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": false,
"created_at": "15-03-2026 09:50:52",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:57.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Delete Feeding Unit
Delete Feeding Unit
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}
Create Medical Category
Create Medical Category
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 13,
"type": "medical-category",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"created_at": "15-03-2026 09:50:53",
"setting_id": null,
"updated_at": "2026-03-15T09:50:53.000000Z"
},
"message": "Data inserted successfully.",
"success": true
}
Get Medical Category List
Get Medical Category List
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Query Parameters
| Field/Name | Type | Examples |
|---|---|---|
| page | integer | 1 |
| per_page | integer | 10 |
{
"data": [
{
"id": 13,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 1,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Show Single Medical Category
Show Single Medical Category
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 13,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
},
"message": "Data retrieved successfully.",
"success": true
}
Update Medical Category
Update Medical Category
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| id | integer | 13 |
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 13,
"data": null,
"type": "medical-category",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": 1,
"created_at": "15-03-2026 09:50:53",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:53.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Active Or InActive Medical Category
Update Medical Category
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 13,
"data": null,
"type": "medical-category",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": false,
"created_at": "15-03-2026 09:50:53",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:57.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Delete Medical Category
Delete Medical Category
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}
Create Medical Unit
Create Medical Unit
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 14,
"type": "medical-unit",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"created_at": "15-03-2026 09:50:53",
"setting_id": null,
"updated_at": "2026-03-15T09:50:53.000000Z"
},
"message": "Data inserted successfully.",
"success": true
}
Get Medical Unit List
Get Medical Unit List
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Query Parameters
| Field/Name | Type | Examples |
|---|---|---|
| page | integer | 1 |
| per_page | integer | 10 |
{
"data": [
{
"id": 14,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 1,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Show Single Medical Unit
Show Single Medical Unit
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 14,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
},
"message": "Data retrieved successfully.",
"success": true
}
Update Medical Unit
Update Medical Unit
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| id | integer | 14 |
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 14,
"data": null,
"type": "medical-unit",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": 1,
"created_at": "15-03-2026 09:50:53",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:53.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Active Or InActive Medical Unit
Update Medical Unit
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 14,
"data": null,
"type": "medical-unit",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": false,
"created_at": "15-03-2026 09:50:53",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:57.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Delete Medical Unit
Delete Medical Unit
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}
Create Medical Medicine Category
Create Medical Medicine Category
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 15,
"type": "medical-medicine-category",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"created_at": "15-03-2026 09:50:53",
"setting_id": null,
"updated_at": "2026-03-15T09:50:53.000000Z"
},
"message": "Data inserted successfully.",
"success": true
}
Get Medical Medicine Category List
Get Medical Medicine Category List
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Query Parameters
| Field/Name | Type | Examples |
|---|---|---|
| page | integer | 1 |
| per_page | integer | 10 |
{
"data": [
{
"id": 15,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 1,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Show Single Medical Medicine Category
Show Single Medical Medicine Category
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 15,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
},
"message": "Data retrieved successfully.",
"success": true
}
Update Medical Medicine Category
Update Medical Medicine Category
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| id | integer | 15 |
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 15,
"data": null,
"type": "medical-medicine-category",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": 1,
"created_at": "15-03-2026 09:50:53",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:53.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Active Or InActive Medical Medicine Category
Update Medical Medicine Category
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 15,
"data": null,
"type": "medical-medicine-category",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": false,
"created_at": "15-03-2026 09:50:53",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:58.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Delete Medical Medicine Category
Delete Medical Medicine Category
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}
Create Training Category
Create Training Category
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 16,
"type": "training-category",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"created_at": "15-03-2026 09:50:53",
"setting_id": null,
"updated_at": "2026-03-15T09:50:53.000000Z"
},
"message": "Data inserted successfully.",
"success": true
}
Get Training Category List
Get Training Category List
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Query Parameters
| Field/Name | Type | Examples |
|---|---|---|
| page | integer | 1 |
| per_page | integer | 10 |
{
"data": [
{
"id": 16,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 1,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Show Single Training Category
Show Single Training Category
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 16,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
},
"message": "Data retrieved successfully.",
"success": true
}
Update Training Category
Update Training Category
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| id | integer | 16 |
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 16,
"data": null,
"type": "training-category",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": 1,
"created_at": "15-03-2026 09:50:53",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:53.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Active Or InActive Training Category
Update Training Category
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 16,
"data": null,
"type": "training-category",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": false,
"created_at": "15-03-2026 09:50:53",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:58.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Delete Training Category
Delete Training Category
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}
Create Training Rate
Create Training Rate
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 17,
"type": "training-rate",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"created_at": "15-03-2026 09:50:53",
"setting_id": null,
"updated_at": "2026-03-15T09:50:53.000000Z"
},
"message": "Data inserted successfully.",
"success": true
}
Get Training Rate List
Get Training Rate List
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Query Parameters
| Field/Name | Type | Examples |
|---|---|---|
| page | integer | 1 |
| per_page | integer | 10 |
{
"data": [
{
"id": 17,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 1,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Show Single Training Rate
Show Single Training Rate
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 17,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
},
"message": "Data retrieved successfully.",
"success": true
}
Update Training Rate
Update Training Rate
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| id | integer | 17 |
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 17,
"data": null,
"type": "training-rate",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": 1,
"created_at": "15-03-2026 09:50:53",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:53.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Active Or InActive Training Rate
Update Training Rate
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 17,
"data": null,
"type": "training-rate",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": false,
"created_at": "15-03-2026 09:50:53",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:58.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Delete Training Rate
Delete Training Rate
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}
Create Locations Country
Create Locations Country
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 18,
"type": "locations-country",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"created_at": "15-03-2026 09:50:53",
"setting_id": null,
"updated_at": "2026-03-15T09:50:53.000000Z"
},
"message": "Data inserted successfully.",
"success": true
}
Get Locations Country List
Get Locations Country List
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Query Parameters
| Field/Name | Type | Examples |
|---|---|---|
| page | integer | 1 |
| per_page | integer | 10 |
{
"data": [
{
"id": 18,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 1,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Show Single Locations Country
Show Single Locations Country
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 18,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
},
"message": "Data retrieved successfully.",
"success": true
}
Update Locations Country
Update Locations Country
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| id | integer | 18 |
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 18,
"data": null,
"type": "locations-country",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": 1,
"created_at": "15-03-2026 09:50:53",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:53.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Active Or InActive Locations Country
Update Locations Country
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 18,
"data": null,
"type": "locations-country",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": false,
"created_at": "15-03-2026 09:50:53",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:58.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Delete Locations Country
Delete Locations Country
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}
Create Locations Type
Create Locations Type
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 19,
"type": "locations-type",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"created_at": "15-03-2026 09:50:53",
"setting_id": null,
"updated_at": "2026-03-15T09:50:53.000000Z"
},
"message": "Data inserted successfully.",
"success": true
}
Get Locations Type List
Get Locations Type List
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Query Parameters
| Field/Name | Type | Examples |
|---|---|---|
| page | integer | 1 |
| per_page | integer | 10 |
{
"data": [
{
"id": 19,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 1,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Show Single Locations Type
Show Single Locations Type
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 19,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
},
"message": "Data retrieved successfully.",
"success": true
}
Update Locations Type
Update Locations Type
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| id | integer | 19 |
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 19,
"data": null,
"type": "locations-type",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": 1,
"created_at": "15-03-2026 09:50:53",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:53.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Active Or InActive Locations Type
Update Locations Type
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 19,
"data": null,
"type": "locations-type",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": false,
"created_at": "15-03-2026 09:50:53",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:59.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Delete Locations Type
Delete Locations Type
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}
Create Locations Sub Type
Create Locations Sub Type
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 20,
"type": "locations-sub-type",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"created_at": "15-03-2026 09:50:54",
"setting_id": null,
"updated_at": "2026-03-15T09:50:54.000000Z"
},
"message": "Data inserted successfully.",
"success": true
}
Get Locations Sub Type List
Get Locations Sub Type List
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Query Parameters
| Field/Name | Type | Examples |
|---|---|---|
| page | integer | 1 |
| per_page | integer | 10 |
{
"data": [
{
"id": 20,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
}
],
"message": "Data retrieved successfully.",
"success": true,
"pagination": {
"total": 1,
"per_page": 10,
"last_page": 1,
"current_page": 1
}
}
Show Single Locations Sub Type
Show Single Locations Sub Type
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 20,
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings"
},
"message": "Data retrieved successfully.",
"success": true
}
Update Locations Sub Type
Update Locations Sub Type
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
Request Body
| Field/Name | Type | Examples |
|---|---|---|
| id | integer | 20 |
| name_ar | string | أختبار للاعدادات |
| name_en | string | Test Settings |
{
"data": {
"id": 20,
"data": null,
"type": "locations-sub-type",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": 1,
"created_at": "15-03-2026 09:50:54",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:54.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Active Or InActive Locations Sub Type
Update Locations Sub Type
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": {
"id": 20,
"data": null,
"type": "locations-sub-type",
"name_ar": "أختبار للاعدادات",
"name_en": "Test Settings",
"is_active": false,
"created_at": "15-03-2026 09:50:54",
"deleted_at": null,
"setting_id": null,
"updated_at": "2026-03-15T09:50:59.000000Z"
},
"message": "Data updated successfully.",
"success": true
}
Delete Locations Sub Type
Delete Locations Sub Type
Headers
| Field/Name | Type | Examples |
|---|---|---|
| Accept | string | application/json |
| X-API-Token | string | X-API-Token Key |
| Content-Type | string | application/json |
| Authorization | string | Authorization Key |
{
"data": [],
"message": "Data deleted successfully.",
"success": true
}