Introduction
This documentation aims to provide all the information you need to work with our API.
Authenticating requests
This API is not authenticated.
AI Report
AI Report.
This endpoint generates an AI-based report summary using the provided prompt.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/ai" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"prompt\": \"\\\"Generate a summary of the company\'s financial performance for Q2 2024.\\\"\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/ai"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"prompt": "\"Generate a summary of the company's financial performance for Q2 2024.\""
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"summary": "The company's financial performance in Q2 2024 showed significant improvement...",
"created_at": "2024-09-05T12:34:56.000000Z"
},
"message": "AI report generated successfully"
}
Example response (400):
{
"message": "Invalid prompt format provided.",
"error_code": "ERR_INVALID_PROMPT"
}
Example response (500):
{
"message": "An unexpected error occurred while processing the request."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
AI Report.
This endpoint generates an AI-based report summary using the provided prompt.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/chatgpt-reports" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"prompt\": \"\\\"Generate a summary of the company\'s financial performance for Q2 2024.\\\"\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/chatgpt-reports"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"prompt": "\"Generate a summary of the company's financial performance for Q2 2024.\""
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"summary": "The company's financial performance in Q2 2024 showed significant improvement...",
"created_at": "2024-09-05T12:34:56.000000Z"
},
"message": "AI report generated successfully"
}
Example response (400):
{
"message": "Invalid prompt format provided.",
"error_code": "ERR_INVALID_PROMPT"
}
Example response (500):
{
"message": "An unexpected error occurred while processing the request."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Authentication
Login user.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/auth/login" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"berge.horace@example.com\",
\"password\": \"7Ny>VUZ\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/auth/login"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "berge.horace@example.com",
"password": "7Ny>VUZ"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"name": "John Doe",
"email": "johndoe@example.com",
"created_at": "2022-03-26T12:34:56.000000Z",
"updated_at": "2022-03-26T12:34:56.000000Z"
},
"message": "User authenticated successfully"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Register a new user.
requires authentication
This endpoint registers a new user with the provided details.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/auth/register-tenant" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"voluptate\",
\"phone_number\": \"ad\",
\"business_name\": \"aut\",
\"email\": \"maymie.collier@example.com\",
\"password\": \"0*xrySlKSjf\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/auth/register-tenant"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "voluptate",
"phone_number": "ad",
"business_name": "aut",
"email": "maymie.collier@example.com",
"password": "0*xrySlKSjf"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"name": "John Doe",
"phone_number": "123-456-7890",
"business_name": "Example Business",
"email": "john@example.com",
"password": "$2y$10$5cWcBn9ivxu/XMZYm6wrzezve.2BF5Gz5gBuJueN9rOuf79lQ1GZG", // Hashed password
"created_at": "2024-04-02T12:00:00.000000Z",
"updated_at": "2024-04-02T12:00:00.000000Z"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Generate OTP (One-Time Password) and send it via email.
This endpoint generates a random OTP and sends it to the provided email address.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/auth/generate-otp" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"greenfelder.osvaldo@example.com\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/auth/generate-otp"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "greenfelder.osvaldo@example.com"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"data": 123456, // The generated OTP
"message": "Generated Successfully"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Verify OTP (One-Time Password).
This endpoint verifies the provided OTP against the stored OTP in the database.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/auth/verify-otp" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"otp\": \"at\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/auth/verify-otp"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"otp": "at"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"data": true|false, // Whether the OTP is verified or not
"message": "OTP True Successfully" // Message indicating the verification status
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Register a new user.
requires authentication
This endpoint registers a new user with the provided details.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/auth/company/request/accept/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"quos\",
\"phone_number\": \"esse\",
\"business_name\": \"qui\",
\"email\": \"progahn@example.org\",
\"password\": \"1GVGw_)*\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/auth/company/request/accept/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "quos",
"phone_number": "esse",
"business_name": "qui",
"email": "progahn@example.org",
"password": "1GVGw_)*"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"name": "John Doe",
"phone_number": "123-456-7890",
"business_name": "Example Business",
"email": "john@example.com",
"password": "$2y$10$5cWcBn9ivxu/XMZYm6wrzezve.2BF5Gz5gBuJueN9rOuf79lQ1GZG", // Hashed password
"created_at": "2024-04-02T12:00:00.000000Z",
"updated_at": "2024-04-02T12:00:00.000000Z"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Logout
@authenticated
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/auth/logout" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/auth/logout"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Example response (200):
{
"data": true,
"message": "User Logout Successfully"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Change user password.
requires authentication
This endpoint allows users to change their password.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/auth/change-password" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"current_password\": \"dolores\",
\"new_password\": \"xkdtzvnbfmmfgcnqhzniqlbncusjydpkorgnlypwxzvkoweneqrnomp\",
\"email\": \"tabitha68@example.net\",
\"password\": \"kX6@okYk^Ta&3$0=o[X9\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/auth/change-password"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"current_password": "dolores",
"new_password": "xkdtzvnbfmmfgcnqhzniqlbncusjydpkorgnlypwxzvkoweneqrnomp",
"email": "tabitha68@example.net",
"password": "kX6@okYk^Ta&3$0=o[X9"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"name": "John Doe",
"email": "john@example.com",
"password_last_updated_at": "2024-04-02T12:00:00.000000Z",
"email_verified_at": "2024-04-02T12:00:00.000000Z",
"created_at": "2024-04-02T12:00:00.000000Z",
"updated_at": "2024-04-02T12:00:00.000000Z"
},
"message": "Updated Successfully"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Revert user password to a new randomly generated password and send it via email.
requires authentication
This endpoint reverts the user's password to a new randomly generated password and sends it to the user's email address.
- @url /api/auth/reset-password/{id}
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/auth/reset-password/possimus" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/auth/reset-password/possimus"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Example response (200):
{
"data": true,
"message": "Password Changed"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Contacts
Show all Contacts
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/contacts" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/contacts"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created contact in storage.
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/contacts" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"first_name\": \"John\",
\"last_name\": \"Doe\",
\"date_of_birth\": \"1990-01-01\",
\"phone\": \"1234567890\",
\"1\": \"schuppe.louisa@example.org\",
\"customer_id\": 12,
\"supplier_id\": 15,
\"work_phone\": \"0987654321\",
\"email\": \"john@example.com\",
\"job_title\": \"Developer\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/contacts"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"first_name": "John",
"last_name": "Doe",
"date_of_birth": "1990-01-01",
"phone": "1234567890",
"1": "schuppe.louisa@example.org",
"customer_id": 12,
"supplier_id": 15,
"work_phone": "0987654321",
"email": "john@example.com",
"job_title": "Developer"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"first_name": "John",
"last_name": "Doe",
"date_of_birth": "1990-01-01",
"phone": "1234567890",
"email": "john@example.com",
"job_title": "Developer",
"customer_id": 1,
"supplier_id": null,
"created_at": "2024-04-07T00:00:00.000000Z",
"updated_at": "2024-04-07T00:00:00.000000Z"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified contact.
requires authentication
Fetches a contact by its ID.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/contacts/ut" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/contacts/ut"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"first_name": "John",
"last_name": "Doe",
"date_of_birth": "1990-01-01",
"phone": "1234567890",
"email": "john@example.com",
"job_title": "Developer",
"customer_id": 1,
"supplier_id": null,
"created_at": "2024-04-07T00:00:00.000000Z",
"updated_at": "2024-04-07T00:00:00.000000Z"
}
}
Example response (404):
{
"error": "Contact not found"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update created resource in storage.
requires authentication
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/contacts/et" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"date_of_birth\": \"2025-03-11\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/contacts/et"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"date_of_birth": "2025-03-11"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (404):
{
"error": "Contact not found"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete contact
requires authentication
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/contacts/quasi" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/contacts/quasi"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Example response (404):
{
"error": "Contact not found"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Search for contacts based on a search term.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/contacts/search?searchTerm=ipsa" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/contacts/search"
);
const params = {
"searchTerm": "ipsa",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": [
{
"id": 1,
"first_name": "John",
"last_name": "Doe",
"date_of_birth": "1990-01-01",
"phone": "1234567890",
"work_phone": "",
"email": "john.doe@example.com",
"job_title": "Software Engineer",
"customer_id": 1,
"supplier_id": null,
"created_at": "2024-04-07T00:00:00.000000Z",
"updated_at": "2024-04-07T00:00:00.000000Z"
},
// ... other matching contacts
]
}
Example response (400):
{
"message": "Please provide a search term."
}
Example response (400):
{
"message": "Search term must be at least 1 characters long."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Customer Notification Reach
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/customer-notifications-reach" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/customer-notifications-reach"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{"data": [{
"id": 25,
"title": "order shipped",
"channel": "email",
"event": "order",
"status": "pending",
"sent_at": null,
"delivered_at": null,
"failed_at": null,
"message": "{\"subject\": \"Order Update\", \"body\": \"Your order has been shipped.\"}",
"date": "2025-03-11 14:30:00",
"response": null,
"created_at": "2025-03-11T09:39:28.000000Z",
"updated_at": "2025-03-11T09:39:28.000000Z",
"image_url": "corporatedevelopment/customersReach/20250311093928_customer.jpg",
"Content": "{\"subject\": \"Order Update\", \"body\": \"Your order has been shipped.\"}",
"EventActivity": "order",
"Status": "pending",
"image_public_url": "https://feexid.development.medixmw.com/storage/corporatedevelopment/customersReach/20250311093928_customer.jpg",
"contacts": [
{
"id": 1,
"created_at": "2024-11-14T10:39:22.000000Z",
"updated_at": "2024-11-14T10:39:22.000000Z",
"deleted_at": null,
"first_name": "Patience",
"last_name": "Nyirenda",
"date_of_birth": "2000-02-27",
"phone": "0881744989",
"work_phone": "0881744989",
"email": "clemolpatie@gmail.com",
"job_title": "HR",
"customer_id": 1,
"supplier_id": null,
"pivot": {
"notification_id": 25,
"contact_id": 1
}
},
{
"id": 2,
"created_at": "2024-11-28T00:12:07.000000Z",
"updated_at": "2024-11-28T00:12:07.000000Z",
"deleted_at": null,
"first_name": "Isaiah",
"last_name": "Clement",
"date_of_birth": "1995-11-28",
"phone": "0881744989",
"work_phone": "0881744989",
"email": "omexiechama@gmail.com",
"job_title": "HR",
"customer_id": 1,
"supplier_id": null,
"pivot": {
"notification_id": 25,
"contact_id": 2
}
}
]
},
]}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a specific notification.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/customer-notifications-reach/20" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/customer-notifications-reach/20"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": {
"id": 21,
"title": "Birthday Reminder: Patience",
"channel": "email",
"event": "birthday",
"status": "pending",
"sent_at": null,
"delivered_at": null,
"failed_at": null,
"message": "{\"text\":\"Upcoming birthday reminder for Patience Nyirenda Hie Hie!\",\"image\":null}",
"date": "2025-02-20 00:00:00",
"response": null,
"created_at": "2025-02-20T23:10:23.000000Z",
"updated_at": "2025-03-11T10:19:45.000000Z",
"image_url": null,
"image_public_url": null,
"contacts": [
{
"id": 1,
"created_at": "2024-11-14T10:39:22.000000Z",
"updated_at": "2024-11-14T10:39:22.000000Z",
"deleted_at": null,
"first_name": "Patience",
"last_name": "Nyirenda",
"date_of_birth": "2000-02-27",
"phone": "0881744989",
"work_phone": "0881744989",
"email": "clemolpatie@gmail.com",
"job_title": "HR",
"customer_id": 1,
"supplier_id": null,
"pivot": {
"notification_id": 21,
"contact_id": 1
}
},
{
"id": 2,
"created_at": "2024-11-28T00:12:07.000000Z",
"updated_at": "2024-11-28T00:12:07.000000Z",
"deleted_at": null,
"first_name": "Isaiah",
"last_name": "Clement",
"date_of_birth": "1995-11-28",
"phone": "0881744989",
"work_phone": "0881744989",
"email": "omexiechama@gmail.com",
"job_title": "HR",
"customer_id": 1,
"supplier_id": null,
"pivot": {
"notification_id": 21,
"contact_id": 2
}
}
]
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created Customer Notification Reach.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/customer-notifications-reach" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "channel=quia"\
--form "event=order"\
--form "message={"subject": "Order Update", "body": "Your order has been shipped."}"\
--form "date=2025-03-11 14:30:00"\
--form "response=ipsam"\
--form "title=Order Shipped"\
--form "contacts[]=1"\
--form "send_immediately=1"\
--form "send_to_all_contacts="\
--form "image=@C:\Users\Celestial\AppData\Local\Temp\php5301.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/customer-notifications-reach"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('channel', 'quia');
body.append('event', 'order');
body.append('message', '{"subject": "Order Update", "body": "Your order has been shipped."}');
body.append('date', '2025-03-11 14:30:00');
body.append('response', 'ipsam');
body.append('title', 'Order Shipped');
body.append('contacts[]', '1');
body.append('send_immediately', '1');
body.append('send_to_all_contacts', '');
body.append('image', document.querySelector('input[name="image"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Example response (200):
{
"data": {
"event": "order",
"message": "{\"subject\": \"Order Update\", \"body\": \"Your order has been shipped.\"}",
"date": "2025-03-11 14:30:00",
"title": "order shipped",
"image_url": "corporatedevelopment/customersReach/20250311094250_customer.jpg",
"status": "pending",
"updated_at": "2025-03-11T09:42:50.000000Z",
"created_at": "2025-03-11T09:42:50.000000Z",
"id": 26
},
"message": "Process Completed"
}
Example response (404):
{
"message": "Company not found",
"status": 404
}
Example response (500):
{
"message": "Error creating customer notification: [Error message]",
"status": 500
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update a notification.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/customer-notifications-reach/voluptatibus" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "channel=consequatur"\
--form "event=order"\
--form "message={"subject": "Order Update", "body": "Your order has been shipped."}"\
--form "date=2025-03-11 14:30:00"\
--form "response=odio"\
--form "title=Order Shipped"\
--form "contacts[]=1"\
--form "send_immediately=1"\
--form "send_to_all_contacts="\
--form "image=@C:\Users\Celestial\AppData\Local\Temp\php5313.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/customer-notifications-reach/voluptatibus"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('channel', 'consequatur');
body.append('event', 'order');
body.append('message', '{"subject": "Order Update", "body": "Your order has been shipped."}');
body.append('date', '2025-03-11 14:30:00');
body.append('response', 'odio');
body.append('title', 'Order Shipped');
body.append('contacts[]', '1');
body.append('send_immediately', '1');
body.append('send_to_all_contacts', '');
body.append('image', document.querySelector('input[name="image"]').files[0]);
fetch(url, {
method: "PUT",
headers,
body,
}).then(response => response.json());Example response (200):
{
"data": {
"id": 21,
"title": "Birthday Reminder: Patience",
"channel": "email",
"event": "birthday",
"status": "pending",
"sent_at": null,
"delivered_at": null,
"failed_at": null,
"message": "{\"text\":\"Upcoming birthday reminder for Patience Nyirenda Hie Hie!\",\"image\":null}",
"date": "2025-02-20 00:00:00",
"response": null,
"created_at": "2025-02-20T23:10:23.000000Z",
"updated_at": "2025-03-11T10:19:45.000000Z",
"image_url": null
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update a notification.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/customer-notifications-reach/recusandae" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "channel=nihil"\
--form "event=order"\
--form "message={"subject": "Order Update", "body": "Your order has been shipped."}"\
--form "date=2025-03-11 14:30:00"\
--form "response=sapiente"\
--form "title=Order Shipped"\
--form "contacts[]=1"\
--form "send_immediately=1"\
--form "send_to_all_contacts="\
--form "image=@C:\Users\Celestial\AppData\Local\Temp\php5325.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/customer-notifications-reach/recusandae"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('channel', 'nihil');
body.append('event', 'order');
body.append('message', '{"subject": "Order Update", "body": "Your order has been shipped."}');
body.append('date', '2025-03-11 14:30:00');
body.append('response', 'sapiente');
body.append('title', 'Order Shipped');
body.append('contacts[]', '1');
body.append('send_immediately', '1');
body.append('send_to_all_contacts', '');
body.append('image', document.querySelector('input[name="image"]').files[0]);
fetch(url, {
method: "PATCH",
headers,
body,
}).then(response => response.json());Example response (200):
{
"data": {
"id": 21,
"title": "Birthday Reminder: Patience",
"channel": "email",
"event": "birthday",
"status": "pending",
"sent_at": null,
"delivered_at": null,
"failed_at": null,
"message": "{\"text\":\"Upcoming birthday reminder for Patience Nyirenda Hie Hie!\",\"image\":null}",
"date": "2025-02-20 00:00:00",
"response": null,
"created_at": "2025-02-20T23:10:23.000000Z",
"updated_at": "2025-03-11T10:19:45.000000Z",
"image_url": null
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update a notification.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/customer-notifications-reach/voluptatem" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "channel=minus"\
--form "event=order"\
--form "message={"subject": "Order Update", "body": "Your order has been shipped."}"\
--form "date=2025-03-11 14:30:00"\
--form "response=ad"\
--form "title=Order Shipped"\
--form "contacts[]=1"\
--form "send_immediately=1"\
--form "send_to_all_contacts="\
--form "image=@C:\Users\Celestial\AppData\Local\Temp\php5346.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/customer-notifications-reach/voluptatem"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('channel', 'minus');
body.append('event', 'order');
body.append('message', '{"subject": "Order Update", "body": "Your order has been shipped."}');
body.append('date', '2025-03-11 14:30:00');
body.append('response', 'ad');
body.append('title', 'Order Shipped');
body.append('contacts[]', '1');
body.append('send_immediately', '1');
body.append('send_to_all_contacts', '');
body.append('image', document.querySelector('input[name="image"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Example response (200):
{
"data": {
"id": 21,
"title": "Birthday Reminder: Patience",
"channel": "email",
"event": "birthday",
"status": "pending",
"sent_at": null,
"delivered_at": null,
"failed_at": null,
"message": "{\"text\":\"Upcoming birthday reminder for Patience Nyirenda Hie Hie!\",\"image\":null}",
"date": "2025-02-20 00:00:00",
"response": null,
"created_at": "2025-02-20T23:10:23.000000Z",
"updated_at": "2025-03-11T10:19:45.000000Z",
"image_url": null
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete a notification.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/customer-notifications-reach/8" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/customer-notifications-reach/8"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Example response (204):
Empty response
Example response (404):
{
"message": "Error deleting: Item not found",
"status": 404
}
Example response (500):
{
"message": "Error deleting customer notification",
"status": 500
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Customers
Retrieve all customers.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/customers" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/customers"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": [
{
"id": 1,
"name": "John Doe",
"phone": "123-456-7890",
"email": "john@example.com",
"address": "123 Main St",
"city": "Some City",
"state": "Some State",
"country": "Some Country",
"created_at": "2024-04-02T12:00:00.000000Z",
"updated_at": "2024-04-02T12:00:00.000000Z"
},
{
"id": 2,
"name": "Jane Smith",
"phone": "987-654-3210",
"email": "jane@example.com",
"address": "456 Elm St",
"city": "Another City",
"state": "Another State",
"country": "Another Country",
"created_at": "2024-04-03T12:00:00.000000Z",
"updated_at": "2024-04-03T12:00:00.000000Z"
},
// Additional customer objects...
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a new customer.
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/customers" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"debitis\",
\"phone\": \"labore\",
\"gender\": \"ipsa\",
\"email\": \"mclaughlin.randall@example.com\",
\"address\": \"qui\",
\"city\": \"distinctio\",
\"state\": \"rerum\",
\"country\": \"inventore\",
\"currency\": \"eum\",
\"create_sales_lead\": \"repellendus\",
\"product_service_id\": \"aspernatur\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/customers"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "debitis",
"phone": "labore",
"gender": "ipsa",
"email": "mclaughlin.randall@example.com",
"address": "qui",
"city": "distinctio",
"state": "rerum",
"country": "inventore",
"currency": "eum",
"create_sales_lead": "repellendus",
"product_service_id": "aspernatur"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"name": "John Doe",
"phone": "123-456-7890",
"email": "john@example.com",
"address": "123 Main St",
"city": "Some City",
"state": "Some State",
"country": "Some Country",
"created_at": "2024-04-02T12:00:00.000000Z",
"updated_at": "2024-04-02T12:00:00.000000Z"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update an existing customer.
requires authentication
This endpoint updates an existing customer with the provided ID.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/customers/et" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"ut\",
\"phone\": \"et\",
\"gender\": \"in\",
\"email\": \"karlee.stamm@example.net\",
\"address\": \"voluptas\",
\"city\": \"funwaimbpbwbyolirggcw\",
\"state\": \"zzgkpzapja\",
\"country\": \"jvjopca\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/customers/et"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "ut",
"phone": "et",
"gender": "in",
"email": "karlee.stamm@example.net",
"address": "voluptas",
"city": "funwaimbpbwbyolirggcw",
"state": "zzgkpzapja",
"country": "jvjopca"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"name": "Updated Name",
"email": "updated@example.com",
"phone": "123-456-7890",
"address": "Updated Address",
"created_at": "2024-04-02T12:00:00.000000Z",
"updated_at": "2024-04-02T12:00:00.000000Z"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a new contact for a customer or supplier.
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/customers/add_contact/6" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"first_name\": \"itaque\",
\"last_name\": \"sed\",
\"date_of_birth\": \"aut\",
\"phone\": \"nihil\",
\"work_phone\": \"qui\",
\"email\": \"lkuhlman@example.org\",
\"job_title\": \"eaque\",
\"customer_id\": 3,
\"supplier_id\": 15
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/customers/add_contact/6"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"first_name": "itaque",
"last_name": "sed",
"date_of_birth": "aut",
"phone": "nihil",
"work_phone": "qui",
"email": "lkuhlman@example.org",
"job_title": "eaque",
"customer_id": 3,
"supplier_id": 15
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"first_name": "John",
"last_name": "Doe",
"date_of_birth": "1990-01-01",
"phone": "123-456-7890",
"work_phone": "123-456-7890",
"email": "john@example.com",
"job_title": "Software Engineer",
"customer_id": 1,
"supplier_id": null,
"created_at": "2024-04-02T12:00:00.000000Z",
"updated_at": "2024-04-02T12:00:00.000000Z"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Endpoints
POST api/auth/register
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/auth/register" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"quas\",
\"business_name\": \"et\",
\"business_address\": \"temporibus\",
\"year_established\": 5,
\"business_registration_number\": \"ipsum\",
\"tax_identification_number\": \"sit\",
\"industry\": \"alias\",
\"email\": \"possimus\",
\"phone_number\": \"consequatur\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/auth/register"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "quas",
"business_name": "et",
"business_address": "temporibus",
"year_established": 5,
"business_registration_number": "ipsum",
"tax_identification_number": "sit",
"industry": "alias",
"email": "possimus",
"phone_number": "consequatur"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/auth/reset-password
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/auth/reset-password" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"kory93@example.net\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/auth/reset-password"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "kory93@example.net"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/auth/company/request/reject/{id}
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/auth/company/request/reject/ut" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/auth/company/request/reject/ut"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (404):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "No query results for model [App\\Models\\CompanyRequest] ut",
"exception": "Symfony\\Component\\HttpKernel\\Exception\\NotFoundHttpException",
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Exceptions\\Handler.php",
"line": 627,
"trace": [
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Exceptions\\Handler.php",
"line": 575,
"function": "prepareException",
"class": "Illuminate\\Foundation\\Exceptions\\Handler",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\nunomaduro\\collision\\src\\Adapters\\Laravel\\ExceptionHandler.php",
"line": 54,
"function": "render",
"class": "Illuminate\\Foundation\\Exceptions\\Handler",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Pipeline.php",
"line": 51,
"function": "render",
"class": "NunoMaduro\\Collision\\Adapters\\Laravel\\ExceptionHandler",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 146,
"function": "handleException",
"class": "Illuminate\\Routing\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Middleware\\SubstituteBindings.php",
"line": 50,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Routing\\Middleware\\SubstituteBindings",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 119,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 805,
"function": "then",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 784,
"function": "runRouteWithinStack",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 748,
"function": "runRoute",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 737,
"function": "dispatchToRoute",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
"line": 200,
"function": "dispatch",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 144,
"function": "Illuminate\\Foundation\\Http\\{closure}",
"class": "Illuminate\\Foundation\\Http\\Kernel",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest.php",
"line": 21,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull.php",
"line": 31,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest.php",
"line": 21,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\TrimStrings.php",
"line": 50,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\TrimStrings",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Middleware\\ValidatePostSize.php",
"line": 27,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Http\\Middleware\\ValidatePostSize",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance.php",
"line": 110,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Middleware\\HandleCors.php",
"line": 62,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Http\\Middleware\\HandleCors",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Middleware\\TrustProxies.php",
"line": 57,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Http\\Middleware\\TrustProxies",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 119,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
"line": 175,
"function": "then",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
"line": 144,
"function": "sendRequestThroughRouter",
"class": "Illuminate\\Foundation\\Http\\Kernel",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 300,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Kernel",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 288,
"function": "callLaravelOrLumenRoute",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 91,
"function": "makeApiCall",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 44,
"function": "makeResponseCall",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 35,
"function": "makeResponseCallIfConditionsPass",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Extractor.php",
"line": 236,
"function": "__invoke",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Extractor.php",
"line": 163,
"function": "iterateThroughStrategies",
"class": "Knuckles\\Scribe\\Extracting\\Extractor",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Extractor.php",
"line": 95,
"function": "fetchResponses",
"class": "Knuckles\\Scribe\\Extracting\\Extractor",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\GroupedEndpoints\\GroupedEndpointsFromApp.php",
"line": 125,
"function": "processRoute",
"class": "Knuckles\\Scribe\\Extracting\\Extractor",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\GroupedEndpoints\\GroupedEndpointsFromApp.php",
"line": 72,
"function": "extractEndpointsInfoFromLaravelApp",
"class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\GroupedEndpoints\\GroupedEndpointsFromApp.php",
"line": 50,
"function": "extractEndpointsInfoAndWriteToDisk",
"class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Commands\\GenerateDocumentation.php",
"line": 53,
"function": "get",
"class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
"line": 36,
"function": "handle",
"class": "Knuckles\\Scribe\\Commands\\GenerateDocumentation",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\Util.php",
"line": 41,
"function": "Illuminate\\Container\\{closure}",
"class": "Illuminate\\Container\\BoundMethod",
"type": "::"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
"line": 93,
"function": "unwrapIfClosure",
"class": "Illuminate\\Container\\Util",
"type": "::"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
"line": 35,
"function": "callBoundMethod",
"class": "Illuminate\\Container\\BoundMethod",
"type": "::"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\Container.php",
"line": 662,
"function": "call",
"class": "Illuminate\\Container\\BoundMethod",
"type": "::"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Console\\Command.php",
"line": 212,
"function": "call",
"class": "Illuminate\\Container\\Container",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\symfony\\console\\Command\\Command.php",
"line": 279,
"function": "execute",
"class": "Illuminate\\Console\\Command",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Console\\Command.php",
"line": 181,
"function": "run",
"class": "Symfony\\Component\\Console\\Command\\Command",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\symfony\\console\\Application.php",
"line": 1049,
"function": "run",
"class": "Illuminate\\Console\\Command",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\symfony\\console\\Application.php",
"line": 318,
"function": "doRunCommand",
"class": "Symfony\\Component\\Console\\Application",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\symfony\\console\\Application.php",
"line": 169,
"function": "doRun",
"class": "Symfony\\Component\\Console\\Application",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Console\\Kernel.php",
"line": 196,
"function": "run",
"class": "Symfony\\Component\\Console\\Application",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Application.php",
"line": 1183,
"function": "handle",
"class": "Illuminate\\Foundation\\Console\\Kernel",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\artisan",
"line": 13,
"function": "handleCommand",
"class": "Illuminate\\Foundation\\Application",
"type": "->"
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Show individual customer
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/customers/minima" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/customers/minima"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/customers/doloremque" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/customers/doloremque"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/all/customers
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/all/customers" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/all/customers"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Search for customer
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/customers/search/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/customers/search/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Import Customers
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/customers/import/customers" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/customers/import/customers"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/projects/nobis" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/projects/nobis"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
display data the has to be shown on the board
Changing this will cause the front end to break
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/projects/project/board-data" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/projects/project/board-data"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (500):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "SQLSTATE[3D000]: Invalid catalog name: 1046 No database selected (Connection: tenant, SQL: select * from `projects` where `projects`.`deleted_at` is null)"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Exports all contacts as a CSV file.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/contacts/export" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/contacts/export"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"Content-Type": "text/csv; charset=utf-8",
"Content-Disposition": "attachment; filename="contacts-2024-05-06.csv""
// CSV file content with headers and contact data
}
Example response (404):
{
"message": "No contacts found for export."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/contacts/import
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/contacts/import" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/contacts/import"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/import/contacts
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/import/contacts" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/import/contacts"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Import Customers
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/import/customers" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "Data_Template=@C:\Users\Celestial\AppData\Local\Temp\php45D1.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/import/customers"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('Data_Template', document.querySelector('input[name="Data_Template"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Import Suppliers
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/import/suppliers" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "Data_Template=@C:\Users\Celestial\AppData\Local\Temp\php45F2.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/import/suppliers"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('Data_Template', document.querySelector('input[name="Data_Template"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Import Product Services
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/import/product_services" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "Data_Template=@C:\Users\Celestial\AppData\Local\Temp\php4603.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/import/product_services"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('Data_Template', document.querySelector('input[name="Data_Template"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Import Product Categories
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/import/product-categories" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "Data_Template=@C:\Users\Celestial\AppData\Local\Temp\php4615.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/import/product-categories"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('Data_Template', document.querySelector('input[name="Data_Template"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Import Quotations
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/import/quotations" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "Data_Template=@C:\Users\Celestial\AppData\Local\Temp\php4617.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/import/quotations"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('Data_Template', document.querySelector('input[name="Data_Template"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Import Sale Orders
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/import/sale-orders" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "Data_Template=@C:\Users\Celestial\AppData\Local\Temp\php4629.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/import/sale-orders"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('Data_Template', document.querySelector('input[name="Data_Template"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Import Sale Invoices
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/import/sale-invoice" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "Data_Template=@C:\Users\Celestial\AppData\Local\Temp\php463A.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/import/sale-invoice"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('Data_Template', document.querySelector('input[name="Data_Template"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Import Trail Balance
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/import/trail-balance" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "Data_Template=@C:\Users\Celestial\AppData\Local\Temp\php464C.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/import/trail-balance"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('Data_Template', document.querySelector('input[name="Data_Template"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Import All Sheets in the Template
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/import/all" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "Data_Template=@C:\Users\Celestial\AppData\Local\Temp\php465E.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/import/all"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('Data_Template', document.querySelector('input[name="Data_Template"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Import Stocks
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/import/stocks" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "Data_Template=@C:\Users\Celestial\AppData\Local\Temp\php4660.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/import/stocks"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('Data_Template', document.querySelector('input[name="Data_Template"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Import Warehouse Stock
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/import/warehouse-stocks" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "Data_Template=@C:\Users\Celestial\AppData\Local\Temp\php4671.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/import/warehouse-stocks"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('Data_Template', document.querySelector('input[name="Data_Template"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/import/income-and-expenses
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/import/income-and-expenses" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "Data_Template=@C:\Users\Celestial\AppData\Local\Temp\php4683.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/import/income-and-expenses"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('Data_Template', document.querySelector('input[name="Data_Template"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/import/calender
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/import/calender" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "Data_Template=@C:\Users\Celestial\AppData\Local\Temp\php4694.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/import/calender"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('Data_Template', document.querySelector('input[name="Data_Template"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/import/shop-restock
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/import/shop-restock" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "Data_Template=@C:\Users\Celestial\AppData\Local\Temp\php46A6.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/import/shop-restock"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('Data_Template', document.querySelector('input[name="Data_Template"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/product-categories
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/product-categories" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/product-categories"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/product-categories
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/product-categories" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"category\": \"iusto\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/product-categories"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"category": "iusto"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/product-categories/{id}
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/product-categories/doloremque" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/product-categories/doloremque"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PUT api/product-categories/{id}
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/product-categories/autem" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
const url = new URL(
"https://feexid.development.medixmw.com/api/product-categories/autem"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/product-categories/{id}
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/product-categories/ut" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/product-categories/ut"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/sale_orders" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/sale_orders"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/sale_orders" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"order_code\": \"placeat\",
\"date\": \"voluptas\",
\"due_date\": \"2033-08-23\",
\"amount\": \"illum\",
\"customer_id\": \"tempora\",
\"product_service_id\": \"odio\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/sale_orders"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"order_code": "placeat",
"date": "voluptas",
"due_date": "2033-08-23",
"amount": "illum",
"customer_id": "tempora",
"product_service_id": "odio"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/sale_orders/placeat" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/sale_orders/placeat"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
requires authentication
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/sale_orders/ut" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/sale_orders/ut"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/trail-balance
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/trail-balance" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/trail-balance"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/trail-balance
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/trail-balance" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"explicabo\",
\"balance\": \"ab\",
\"as_at\": \"aperiam\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/trail-balance"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "explicabo",
"balance": "ab",
"as_at": "aperiam"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PUT api/trail-balance/{id}
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/trail-balance/aliquam" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/trail-balance/aliquam"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/trail-balance/{id}
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/trail-balance/id" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/trail-balance/id"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/bookings
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/bookings" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/bookings"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/inventory
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/inventory" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/inventory"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/inventory
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/inventory" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"stock_id\": \"magnam\",
\"warehouse_id\": \"excepturi\",
\"amount\": \"et\",
\"quantity\": \"tempora\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/inventory"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"stock_id": "magnam",
"warehouse_id": "excepturi",
"amount": "et",
"quantity": "tempora"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/warehouses/count" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/warehouses/count"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/warehouses" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/warehouses"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/warehouses" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"utrupkbywtsppk\",
\"description\": \"Possimus perspiciatis labore sunt voluptatem expedita vero.\",
\"email\": \"ohaley@example.com\",
\"phone\": \"p\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/warehouses"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "utrupkbywtsppk",
"description": "Possimus perspiciatis labore sunt voluptatem expedita vero.",
"email": "ohaley@example.com",
"phone": "p"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/warehouses/ipsa" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/warehouses/ipsa"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/warehouses/10" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"cegmvmdsrecocgnvbqqs\",
\"description\": \"Omnis perspiciatis commodi placeat minima ut eos optio et.\",
\"email\": \"kmclaughlin@example.org\",
\"phone\": \"daazm\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/warehouses/10"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "cegmvmdsrecocgnvbqqs",
"description": "Omnis perspiciatis commodi placeat minima ut eos optio et.",
"email": "kmclaughlin@example.org",
"phone": "daazm"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/warehouses/2" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"nvpwsjgnh\",
\"description\": \"Autem quisquam voluptatem voluptatem maiores.\",
\"email\": \"meagan.hickle@example.org\",
\"phone\": \"xqymoigspow\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/warehouses/2"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "nvpwsjgnh",
"description": "Autem quisquam voluptatem voluptatem maiores.",
"email": "meagan.hickle@example.org",
"phone": "xqymoigspow"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/warehouses/10" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/warehouses/10"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get all stocks that belong to a specific warehouse.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/warehouses/stocks/porro" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/warehouses/stocks/porro"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/warehouses/{id}/export
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/warehouses/8/export" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/warehouses/8/export"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/location
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/location" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/location"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/location
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/location" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"possimus\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/location"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "possimus"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PUT api/location/{id}
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/location/similique" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/location/similique"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/location/{id}
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/location/totam" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/location/totam"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of all the departments paginated.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/departments" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/departments"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": [
{
"id": 1,
"company_id": 1,
"department_name": "Marketing",
"created_at": "2024-05-06T09:14:00.000000Z",
"updated_at": "2024-05-06T09:14:00.000000Z",
"relations": {
"company": {
"id": 1,
"name": "Company Name",
"created_at": "2024-05-06T09:14:00.000000Z",
"updated_at": "2024-05-06T09:14:00.000000Z"
},
"employees": []
}
},
// ... other departments
],
"links": {
"first": "http:\/\/your_api_url\/departments?page=1",
"last": "http:\/\/your_api_url\/departments?page=2",
"prev": null,
"next": "http:\/\/your_api_url\/departments?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 2,
"per_page": 15,
"total": 30
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created department in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/departments" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"department_name\": \"yuvsiwtexemoxczvamssxhvbc\",
\"roles\": [
5
]
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/departments"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"department_name": "yuvsiwtexemoxczvamssxhvbc",
"roles": [
5
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (201):
{
"success": true,
"message": "Department created successfully",
"data": {
"id": 1,
"company_id": 1,
"department_name": "Marketing",
"created_at": "2024-05-06T09:14:00.000000Z",
"updated_at": "2024-05-06T09:14:00.000000Z"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified department resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/departments/18" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/departments/18"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"company_id": 1,
"department_name": "Marketing",
"created_at": "2024-05-06T09:14:00.000000Z",
"updated_at": "2024-05-06T09:14:00.000000Z",
"relations": {
"company": {
"id": 1,
"name": "Company Name",
"created_at": "2024-05-06T09:14:00.000000Z",
"updated_at": "2024-05-06T09:14:00.000000Z"
},
"employees": []
}
}
}
Example response (404):
{
"message": "Not Found"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified department resource in storage.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/departments/14" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"department_name\": \"or\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/departments/14"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"department_name": "or"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"company_id": 1,
"department_name": "Updated Department Name",
"created_at": "2024-05-06T09:14:00.000000Z",
"updated_at": "2024-05-06T09:14:00.000000Z",
"relations": {
"company": {
"id": 1,
"name": "Company Name",
"created_at": "2024-05-06T09:14:00.000000Z",
"updated_at": "2024-05-06T09:14:00.000000Z"
},
"employees": []
}
}
}
Example response (400):
{
"message": "failed to update department"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified department resource in storage.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/departments/18" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"department_name\": \"iunojupexgbvaeq\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/departments/18"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"department_name": "iunojupexgbvaeq"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"company_id": 1,
"department_name": "Updated Department Name",
"created_at": "2024-05-06T09:14:00.000000Z",
"updated_at": "2024-05-06T09:14:00.000000Z",
"relations": {
"company": {
"id": 1,
"name": "Company Name",
"created_at": "2024-05-06T09:14:00.000000Z",
"updated_at": "2024-05-06T09:14:00.000000Z"
},
"employees": []
}
}
}
Example response (400):
{
"message": "failed to update department"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified department resource from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/departments/11" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/departments/11"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Example response (200):
{
"success": true,
"message": "Department deleted successfully"
}
Example response (500):
{
"success": false,
"message": "Failed to delete department"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/departments/{department}/employees
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/departments/6/employees" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/departments/6/employees"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/departments/{department}/employees/{employee}
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/departments/2/employees/totam" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/departments/2/employees/totam"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/departments/{departmentId}/positions
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/departments/16/positions" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/departments/16/positions"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created employee in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/employees" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"gzfejgwsgyz\",
\"phone_number\": \"dpxfqrqymuitdn\",
\"email\": \"fdurgan@example.com\",
\"address\": \"zztazfukxrvblwmlgoednta\",
\"avatar_url\": \"https:\\/\\/www.graham.com\\/soluta-labore-impedit-impedit-qui-similique\",
\"date_of_birth\": \"2025-03-11T10:35:55\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/employees"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "gzfejgwsgyz",
"phone_number": "dpxfqrqymuitdn",
"email": "fdurgan@example.com",
"address": "zztazfukxrvblwmlgoednta",
"avatar_url": "https:\/\/www.graham.com\/soluta-labore-impedit-impedit-qui-similique",
"date_of_birth": "2025-03-11T10:35:55"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (201):
{
"success": true,
"message": "Employee created successfully",
"data": {
"id": 1,
"company_id": 1,
"department_id": null,
"employee_name": "John Doe",
"email": "john.doe@example.com",
"status": "active",
"created_at": "2024-05-06T09:27:00.000000Z",
"updated_at": "2024-05-06T09:27:00.000000Z",
"deleted_at": null
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified employee resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/employees/15" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/employees/15"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"company_id": 1,
"department_id": null,
"employee_name": "John Doe",
"email": "john.doe@example.com",
"status": "active",
"created_at": "2024-05-06T09:27:00.000000Z",
"updated_at": "2024-05-06T09:27:00.000000Z",
"deleted_at": null,
"relations": {
"company": {
"id": 1,
"name": "Company Name",
"created_at": "2024-05-06T09:27:00.000000Z",
"updated_at": "2024-05-06T09:27:00.000000Z",
"deleted_at": null
},
"department": {
"id": null, // Department might be null
"department_name": "Department Name",
"created_at": "2024-05-06T09:27:00.000000Z",
"updated_at": "2024-05-06T09:27:00.000000Z",
"deleted_at": null
}
}
}
}
Example response (404):
{
"message": "Not Found"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified employee resource in storage.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/employees/9" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"lgkxxhujirjevbyktyedkpxrw\",
\"status\": \"kacclaejpuzmkcoqibhv\",
\"phone_number\": \"dcwipvwjdxtzrm\",
\"email\": \"misael.doyle@example.net\",
\"address\": \"vblrgbvufpazhsfmh\",
\"about\": \"fikcbzzzhacsdrhqu\",
\"avatar_url\": \"http:\\/\\/quigley.com\\/\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/employees/9"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "lgkxxhujirjevbyktyedkpxrw",
"status": "kacclaejpuzmkcoqibhv",
"phone_number": "dcwipvwjdxtzrm",
"email": "misael.doyle@example.net",
"address": "vblrgbvufpazhsfmh",
"about": "fikcbzzzhacsdrhqu",
"avatar_url": "http:\/\/quigley.com\/"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"company_id": 1,
"department_id": 2,
"employee_name": "Jane Doe",
"email": "john.doe@example.com", // Email remains unchanged
"status": "inactive",
"created_at": "2024-05-06T09:27:00.000000Z",
"updated_at": "2024-05-06T09:40:00.000000Z", // Updated timestamp
"deleted_at": null,
"relations": {
// Same structure as show response
}
}
}
Example response (400):
{
"message": "failed to update employee"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified employee resource in storage.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/employees/19" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vjvuzynfvfyrbiratzxekvuo\",
\"status\": \"l\",
\"phone_number\": \"zsxsqiznnuw\",
\"email\": \"kframi@example.com\",
\"address\": \"ufgaalsmprelbyzstqfgc\",
\"about\": \"vwwsnhnfmqysp\",
\"avatar_url\": \"https:\\/\\/kirlin.net\\/dolorum-voluptates-dolor-architecto-voluptatem.html\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/employees/19"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vjvuzynfvfyrbiratzxekvuo",
"status": "l",
"phone_number": "zsxsqiznnuw",
"email": "kframi@example.com",
"address": "ufgaalsmprelbyzstqfgc",
"about": "vwwsnhnfmqysp",
"avatar_url": "https:\/\/kirlin.net\/dolorum-voluptates-dolor-architecto-voluptatem.html"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"company_id": 1,
"department_id": 2,
"employee_name": "Jane Doe",
"email": "john.doe@example.com", // Email remains unchanged
"status": "inactive",
"created_at": "2024-05-06T09:27:00.000000Z",
"updated_at": "2024-05-06T09:40:00.000000Z", // Updated timestamp
"deleted_at": null,
"relations": {
// Same structure as show response
}
}
}
Example response (400):
{
"message": "failed to update employee"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified employee resource from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/employees/8" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/employees/8"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Example response (200):
{
"success": true,
"message": "Employee deleted successfully"
}
Example response (500):
{
"success": false,
"message": "Failed to delete employee"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/employees/{employee_id}/profile-image
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/employees/3/profile-image" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "image=@C:\Users\Celestial\AppData\Local\Temp\php48DB.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/employees/3/profile-image"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('image', document.querySelector('input[name="image"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display all the employees paginated.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/employees" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/employees"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": [
{
"id": 1,
"company_id": 1,
"department_id": null,
"employee_name": "John Doe",
"email": "john.doe@example.com",
"status": "active",
"created_at": "2024-05-06T09:27:00.000000Z",
"updated_at": "2024-05-06T09:27:00.000000Z",
"deleted_at": null
},
// ... other employees
],
"links": {
"first": "http:\/\/your_api_url\/employees?page=1",
"last": "http:\/\/your_api_url\/employees?page=2",
"prev": null,
"next": "http:\/\/your_api_url\/employees?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 2,
"per_page": 15,
"total": 30
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PUT api/user/update-profile-details
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/user/update-profile-details" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "name=kqxuh"\
--form "email=hand.lisa@example.com"\
--form "phone_number=ewnunkwqyklivfq"\
--form "address=fvdn"\
--form "about=magnam"\
--form "avatar_url=http://zieme.com/fuga-voluptas-et-dignissimos-quaerat-at.html"\
--form "image=@C:\Users\Celestial\AppData\Local\Temp\php48EC.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/user/update-profile-details"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('name', 'kqxuh');
body.append('email', 'hand.lisa@example.com');
body.append('phone_number', 'ewnunkwqyklivfq');
body.append('address', 'fvdn');
body.append('about', 'magnam');
body.append('avatar_url', 'http://zieme.com/fuga-voluptas-et-dignissimos-quaerat-at.html');
body.append('image', document.querySelector('input[name="image"]').files[0]);
fetch(url, {
method: "PUT",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/user/update-profile-details
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/user/update-profile-details" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "name=awjkjwbpjgaovlszmy"\
--form "email=alisa.dibbert@example.org"\
--form "phone_number=h"\
--form "address=rhzdihmvwmgnui"\
--form "about=et"\
--form "avatar_url=http://larkin.com/ipsum-quod-blanditiis-pariatur-corrupti-quia-atque-necessitatibus"\
--form "image=@C:\Users\Celestial\AppData\Local\Temp\php48FD.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/user/update-profile-details"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('name', 'awjkjwbpjgaovlszmy');
body.append('email', 'alisa.dibbert@example.org');
body.append('phone_number', 'h');
body.append('address', 'rhzdihmvwmgnui');
body.append('about', 'et');
body.append('avatar_url', 'http://larkin.com/ipsum-quod-blanditiis-pariatur-corrupti-quia-atque-necessitatibus');
body.append('image', document.querySelector('input[name="image"]').files[0]);
fetch(url, {
method: "PATCH",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/companies
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/companies" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/companies"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified company.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/companies" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"zncsxejrcfcriuj\",
\"registration_number\": \"mtixhnmofifmw\",
\"business_address\": \"cfhxxwhpmchoxygjcgmpwir\",
\"email\": \"lesley.bogisich@example.org\",
\"phone\": \"muaeekqz\",
\"website\": \"ibzq\",
\"tpin\": \"mk\",
\"year_established\": \"3003\",
\"business_registration_number\": \"kph\",
\"tax_identification_number\": \"rgkonmujafgngho\",
\"subscription_license\": \"dzqmckvkuber\",
\"city\": \"qsacagwogbxcudnbrwcp\",
\"logo\": \"tjojhhrod\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/companies"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "zncsxejrcfcriuj",
"registration_number": "mtixhnmofifmw",
"business_address": "cfhxxwhpmchoxygjcgmpwir",
"email": "lesley.bogisich@example.org",
"phone": "muaeekqz",
"website": "ibzq",
"tpin": "mk",
"year_established": "3003",
"business_registration_number": "kph",
"tax_identification_number": "rgkonmujafgngho",
"subscription_license": "dzqmckvkuber",
"city": "qsacagwogbxcudnbrwcp",
"logo": "tjojhhrod"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified company.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/companies/non" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/companies/non"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified company.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/companies/soluta" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"pssv\",
\"registration_number\": \"alyenyjdmrevcwmprbeogmhkx\",
\"business_address\": \"nntgskfjftl\",
\"email\": \"geovanny.braun@example.net\",
\"phone\": \"dsqmneojabbhsmhhqzbirgs\",
\"website\": \"nekatzvbaodbcwyspraoasxu\",
\"tpin\": \"gpacsphkjssnctotbeownd\",
\"year_established\": \"9258\",
\"business_registration_number\": \"uyurgwqfpns\",
\"tax_identification_number\": \"jetnzvrg\",
\"subscription_license\": \"mynwovtfhphjlqocdlvw\",
\"city\": \"vajwpiokbqyxxq\",
\"logo\": \"nfxmldajujvakwu\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/companies/soluta"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "pssv",
"registration_number": "alyenyjdmrevcwmprbeogmhkx",
"business_address": "nntgskfjftl",
"email": "geovanny.braun@example.net",
"phone": "dsqmneojabbhsmhhqzbirgs",
"website": "nekatzvbaodbcwyspraoasxu",
"tpin": "gpacsphkjssnctotbeownd",
"year_established": "9258",
"business_registration_number": "uyurgwqfpns",
"tax_identification_number": "jetnzvrg",
"subscription_license": "mynwovtfhphjlqocdlvw",
"city": "vajwpiokbqyxxq",
"logo": "nfxmldajujvakwu"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified company.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/companies/numquam" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"gyjffpm\",
\"registration_number\": \"uccld\",
\"business_address\": \"yqhgohxmiqlirav\",
\"email\": \"erica04@example.net\",
\"phone\": \"kgtgzxmzyaazmxwgpxdht\",
\"website\": \"tpilmdsdphy\",
\"tpin\": \"cdkvzjatdvbq\",
\"year_established\": \"7489\",
\"business_registration_number\": \"vtdevvwgbatyangstoekeaneb\",
\"tax_identification_number\": \"bgnkswtlkhuwr\",
\"subscription_license\": \"hwxphsnlivmrombzscqb\",
\"city\": \"ruoqqztwrplckjnixil\",
\"logo\": \"vxzxewvflkxnyg\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/companies/numquam"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "gyjffpm",
"registration_number": "uccld",
"business_address": "yqhgohxmiqlirav",
"email": "erica04@example.net",
"phone": "kgtgzxmzyaazmxwgpxdht",
"website": "tpilmdsdphy",
"tpin": "cdkvzjatdvbq",
"year_established": "7489",
"business_registration_number": "vtdevvwgbatyangstoekeaneb",
"tax_identification_number": "bgnkswtlkhuwr",
"subscription_license": "hwxphsnlivmrombzscqb",
"city": "ruoqqztwrplckjnixil",
"logo": "vxzxewvflkxnyg"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of equities.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/equities" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/equities"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created equity.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/equities" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"dario11@example.com\",
\"phone\": \"eos\",
\"country\": \"ea\",
\"state\": \"dolorum\",
\"address\": \"ex\",
\"owner_name\": \"optio\",
\"owner_type\": \"et\",
\"ownership_percentage\": 242.214593,
\"number_of_shares\": 13,
\"share_class\": \"repellendus\",
\"equity_value\": 46.9,
\"initial_investment\": 31007.580054014,
\"date_of_investment\": \"2025-03-11T10:35:55\",
\"capital_contributions\": 1.7649791,
\"withdrawals\": 32.69514,
\"cumulative_dividends\": 27,
\"dilution_percentage\": 24156809,
\"valuation_date\": \"2025-03-11T10:35:55\",
\"equity_type\": \"possimus\",
\"status\": \"occaecati\",
\"remarks\": \"quisquam\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/equities"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "dario11@example.com",
"phone": "eos",
"country": "ea",
"state": "dolorum",
"address": "ex",
"owner_name": "optio",
"owner_type": "et",
"ownership_percentage": 242.214593,
"number_of_shares": 13,
"share_class": "repellendus",
"equity_value": 46.9,
"initial_investment": 31007.580054014,
"date_of_investment": "2025-03-11T10:35:55",
"capital_contributions": 1.7649791,
"withdrawals": 32.69514,
"cumulative_dividends": 27,
"dilution_percentage": 24156809,
"valuation_date": "2025-03-11T10:35:55",
"equity_type": "possimus",
"status": "occaecati",
"remarks": "quisquam"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified equity.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/equities/quis" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/equities/quis"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified equity.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/equities/incidunt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"damore.ramon@example.net\",
\"phone\": \"et\",
\"country\": \"inventore\",
\"state\": \"quos\",
\"address\": \"doloribus\",
\"owner_name\": \"non\",
\"owner_type\": \"blanditiis\",
\"ownership_percentage\": 3548219.8198,
\"number_of_shares\": 11,
\"share_class\": \"dicta\",
\"equity_value\": 2139.4779,
\"initial_investment\": 4.9017,
\"date_of_investment\": \"2025-03-11T10:35:55\",
\"capital_contributions\": 136110.57,
\"withdrawals\": 2.018086,
\"cumulative_dividends\": 838.2,
\"dilution_percentage\": 23.88818,
\"valuation_date\": \"2025-03-11T10:35:55\",
\"equity_type\": \"ut\",
\"status\": \"consectetur\",
\"remarks\": \"tempore\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/equities/incidunt"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "damore.ramon@example.net",
"phone": "et",
"country": "inventore",
"state": "quos",
"address": "doloribus",
"owner_name": "non",
"owner_type": "blanditiis",
"ownership_percentage": 3548219.8198,
"number_of_shares": 11,
"share_class": "dicta",
"equity_value": 2139.4779,
"initial_investment": 4.9017,
"date_of_investment": "2025-03-11T10:35:55",
"capital_contributions": 136110.57,
"withdrawals": 2.018086,
"cumulative_dividends": 838.2,
"dilution_percentage": 23.88818,
"valuation_date": "2025-03-11T10:35:55",
"equity_type": "ut",
"status": "consectetur",
"remarks": "tempore"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified equity.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/equities/voluptates" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"watsica.clement@example.com\",
\"phone\": \"occaecati\",
\"country\": \"sit\",
\"state\": \"reiciendis\",
\"address\": \"est\",
\"owner_name\": \"vitae\",
\"owner_type\": \"minus\",
\"ownership_percentage\": 608317.77108223,
\"number_of_shares\": 20,
\"share_class\": \"vel\",
\"equity_value\": 0.21,
\"initial_investment\": 14764.23724,
\"date_of_investment\": \"2025-03-11T10:35:55\",
\"capital_contributions\": 205.9,
\"withdrawals\": 25.52,
\"cumulative_dividends\": 202425.98,
\"dilution_percentage\": 58006068.08835229,
\"valuation_date\": \"2025-03-11T10:35:55\",
\"equity_type\": \"et\",
\"status\": \"a\",
\"remarks\": \"et\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/equities/voluptates"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "watsica.clement@example.com",
"phone": "occaecati",
"country": "sit",
"state": "reiciendis",
"address": "est",
"owner_name": "vitae",
"owner_type": "minus",
"ownership_percentage": 608317.77108223,
"number_of_shares": 20,
"share_class": "vel",
"equity_value": 0.21,
"initial_investment": 14764.23724,
"date_of_investment": "2025-03-11T10:35:55",
"capital_contributions": 205.9,
"withdrawals": 25.52,
"cumulative_dividends": 202425.98,
"dilution_percentage": 58006068.08835229,
"valuation_date": "2025-03-11T10:35:55",
"equity_type": "et",
"status": "a",
"remarks": "et"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified equity.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/equities/porro" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/equities/porro"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/supplier-invoices/add-payment
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/supplier-invoices/add-payment" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"supplier_id\": \"reprehenderit\",
\"supplier_invoice_id\": \"possimus\",
\"payment_amount_total\": 55
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/supplier-invoices/add-payment"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"supplier_id": "reprehenderit",
"supplier_invoice_id": "possimus",
"payment_amount_total": 55
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/supplier-invoices/import
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/supplier-invoices/import" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/supplier-invoices/import"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/supplier-invoice-payments/import
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/supplier-invoice-payments/import" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/supplier-invoice-payments/import"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/requisitions" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/requisitions"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/requisitions/voluptas" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/requisitions/voluptas"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/requisitions" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"requisition_type\": \"deleniti\",
\"warehouse_id\": 15,
\"from_warehouse_id\": 1,
\"supplier_id\": 12,
\"reference\": \"consequatur\",
\"currency\": \"sunt\",
\"tax_rate\": 547759.3365396,
\"exchange_rate\": 1.28661916,
\"reason_for_requisition\": \"pariatur\",
\"lines\": [
\"libero\"
]
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/requisitions"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"requisition_type": "deleniti",
"warehouse_id": 15,
"from_warehouse_id": 1,
"supplier_id": 12,
"reference": "consequatur",
"currency": "sunt",
"tax_rate": 547759.3365396,
"exchange_rate": 1.28661916,
"reason_for_requisition": "pariatur",
"lines": [
"libero"
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/requisitions/praesentium" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/requisitions/praesentium"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/requisitions/omnis" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/requisitions/omnis"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PATCH",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/requisitions/eius" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/requisitions/eius"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/requisitions/{requisition}/update-lines
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/requisitions/necessitatibus/update-lines" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/requisitions/necessitatibus/update-lines"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/requisitions/{requisition}/update-lines
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/requisitions/autem/update-lines" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/requisitions/autem/update-lines"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PATCH",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/requisitions/approve
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/requisitions/approve" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"requisition_id\": 20
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/requisitions/approve"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"requisition_id": 20
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/requisitions/cancel
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/requisitions/cancel" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"reason\": \"oskxza\",
\"requisition_id\": 11
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/requisitions/cancel"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"reason": "oskxza",
"requisition_id": 11
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/requisitions/reject
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/requisitions/reject" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"reason\": \"ifux\",
\"requisition_id\": 1
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/requisitions/reject"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"reason": "ifux",
"requisition_id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/requisitions/convert-to-purchase-order
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/requisitions/convert-to-purchase-order" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"requisition_id\": 11
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/requisitions/convert-to-purchase-order"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"requisition_id": 11
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/requisition-statuses" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/requisition-statuses"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/requisition-types" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/requisition-types"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Convert a requisition to an RFQ.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/requisitions/convert-to-rfqs" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"requisition_id\": \"ea\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/requisitions/convert-to-rfqs"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"requisition_id": "ea"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/requisitions/upload
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/requisitions/upload" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"Data_Template\": \"suscipit\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/requisitions/upload"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"Data_Template": "suscipit"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of RFQs.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/rfqs" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/rfqs"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified RFQ.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/rfqs/voluptas" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/rfqs/voluptas"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified RFQ from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/rfqs/ut" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/rfqs/ut"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified RFQ.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/rfqs/responses/voluptas" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/rfqs/responses/voluptas"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/rfqs/responses/accept
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/rfqs/responses/accept" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"due_date\": \"2025-03-11T10:35:56\",
\"response_id\": \"consequatur\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/rfqs/responses/accept"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"due_date": "2025-03-11T10:35:56",
"response_id": "consequatur"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/positions" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/positions"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/positions" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"oybc\",
\"description\": \"Omnis vitae aut debitis fuga dolorem saepe aut unde.\",
\"is_shared\": false,
\"department_id\": \"aut\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/positions"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "oybc",
"description": "Omnis vitae aut debitis fuga dolorem saepe aut unde.",
"is_shared": false,
"department_id": "aut"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/positions/8" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/positions/8"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/positions/8" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"qcibywguctcjxhbyqgckrtd\",
\"description\": \"Maiores consequatur debitis dolore nam praesentium quis qui.\",
\"is_shared\": true
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/positions/8"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "qcibywguctcjxhbyqgckrtd",
"description": "Maiores consequatur debitis dolore nam praesentium quis qui.",
"is_shared": true
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/positions/20" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"lwq\",
\"description\": \"Aut distinctio quis iusto sed.\",
\"is_shared\": false
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/positions/20"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "lwq",
"description": "Aut distinctio quis iusto sed.",
"is_shared": false
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/positions/18" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/positions/18"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/permissions
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/permissions" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/permissions"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/permissions/{id}
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/permissions/10" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/permissions/10"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/permissions
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/permissions" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/permissions"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PUT api/permissions/{id}
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/permissions/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/permissions/17"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/permissions/{id}
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/permissions/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/permissions/16"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PATCH",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/permissions/{id}
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/permissions/2" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/permissions/2"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/roles
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/roles" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/roles"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/roles/{id}
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/roles/13" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/roles/13"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/roles
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/roles" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/roles"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PUT api/roles/{id}
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/roles/19" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/roles/19"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/roles/{id}
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/roles/9" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/roles/9"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PATCH",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/roles/{id}
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/roles/3" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/roles/3"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PUT api/roles/{role}/give-permission
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/roles/12/give-permission" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/roles/12/give-permission"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/roles/{role}/give-permission
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/roles/10/give-permission" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/roles/10/give-permission"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PATCH",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/events" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/events"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/events/quia" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/events/quia"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/events" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"jcefkgnkyiaa\",
\"color\": \"at\",
\"textColor\": \"doloribus\",
\"description\": \"Velit cupiditate pariatur a quae magnam nostrum.\",
\"start\": 16.684487014,
\"end\": 7435.2059727,
\"allDay\": false,
\"location\": \"yivrywxilsqp\",
\"visibility\": \"universal\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/events"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "jcefkgnkyiaa",
"color": "at",
"textColor": "doloribus",
"description": "Velit cupiditate pariatur a quae magnam nostrum.",
"start": 16.684487014,
"end": 7435.2059727,
"allDay": false,
"location": "yivrywxilsqp",
"visibility": "universal"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/events/ullam" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"zfcnnfl\",
\"color\": \"quis\",
\"allDay\": false,
\"textColor\": \"molestiae\",
\"description\": \"Aliquid doloribus quis tenetur error et dolorum et ab.\",
\"start\": 70.667,
\"end\": 6320.87386,
\"location\": \"hywebifskkqebzjbp\",
\"visibility\": \"universal\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/events/ullam"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "zfcnnfl",
"color": "quis",
"allDay": false,
"textColor": "molestiae",
"description": "Aliquid doloribus quis tenetur error et dolorum et ab.",
"start": 70.667,
"end": 6320.87386,
"location": "hywebifskkqebzjbp",
"visibility": "universal"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/events/voluptas" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"osostmvqi\",
\"color\": \"maxime\",
\"allDay\": false,
\"textColor\": \"rerum\",
\"description\": \"Vero rerum et vero.\",
\"start\": 29877187.6,
\"end\": 10988155.8868,
\"location\": \"jyjnpisusotiwyrtjyulrql\",
\"visibility\": \"attendees\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/events/voluptas"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "osostmvqi",
"color": "maxime",
"allDay": false,
"textColor": "rerum",
"description": "Vero rerum et vero.",
"start": 29877187.6,
"end": 10988155.8868,
"location": "jyjnpisusotiwyrtjyulrql",
"visibility": "attendees"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/events/aliquam" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/events/aliquam"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/events/department/{department_id}
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/events/department/6" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/events/department/6"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the memos.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/memos" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/memos"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created memo in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/memos" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"mrfulujldkdb\",
\"content\": \"natus\",
\"visibility\": \"in\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/memos"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "mrfulujldkdb",
"content": "natus",
"visibility": "in"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified memo.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/memos/et" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/memos/et"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified memo in storage.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/memos/3" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"gnqipe\",
\"content\": \"similique\",
\"status\": \"ipsa\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/memos/3"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "gnqipe",
"content": "similique",
"status": "ipsa"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified memo in storage.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/memos/12" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"tjaqtbninzkzgmqsrjvkjlhi\",
\"content\": \"voluptas\",
\"status\": \"consectetur\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/memos/12"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "tjaqtbninzkzgmqsrjvkjlhi",
"content": "voluptas",
"status": "consectetur"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified memo from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/memos/12" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/memos/12"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Approve the specified memo.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/memos/14/approve" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/memos/14/approve"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Approve the specified memo.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/memos/9/approve" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/memos/9/approve"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PATCH",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PUT api/memos/{memo}/cancel
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/memos/13/cancel" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/memos/13/cancel"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/memos/{memo}/cancel
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/memos/8/cancel" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/memos/8/cancel"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PATCH",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve memos for a specific department.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/memos/department/12" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/memos/department/12"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve memos created by the authenticated user.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/memos/user/created" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/memos/user/created"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/stocks" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/stocks"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/stocks" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"xlusisslcaf\",
\"description\": \"Modi facere quia non harum eveniet corrupti.\",
\"barcode\": \"animi\",
\"category_id\": \"totam\",
\"unit_of_measure\": \"jvjhxhgh\",
\"volume\": \"aliquam\",
\"mass\": \"hic\",
\"on_hold\": \"ipsam\",
\"unit_price\": 72,
\"purchase_price\": 18,
\"quantity\": 59,
\"minimum_stock_level\": 74,
\"maximum_stock_level\": 63,
\"reorder_level\": 5
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/stocks"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "xlusisslcaf",
"description": "Modi facere quia non harum eveniet corrupti.",
"barcode": "animi",
"category_id": "totam",
"unit_of_measure": "jvjhxhgh",
"volume": "aliquam",
"mass": "hic",
"on_hold": "ipsam",
"unit_price": 72,
"purchase_price": 18,
"quantity": 59,
"minimum_stock_level": 74,
"maximum_stock_level": 63,
"reorder_level": 5
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/stocks/et" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/stocks/et"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/stocks/similique" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"nkrvyjzzxktaugyczb\",
\"description\": \"Ut qui quas consectetur iste quia.\",
\"barcode\": \"omnis\",
\"unit_of_measure\": \"cvrauggjzlrlkqojvbv\",
\"volume\": \"nobis\",
\"mass\": \"reiciendis\",
\"on_hold\": \"tempore\",
\"unit_price\": 87,
\"purchase_price\": 25,
\"quantity\": 31
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/stocks/similique"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "nkrvyjzzxktaugyczb",
"description": "Ut qui quas consectetur iste quia.",
"barcode": "omnis",
"unit_of_measure": "cvrauggjzlrlkqojvbv",
"volume": "nobis",
"mass": "reiciendis",
"on_hold": "tempore",
"unit_price": 87,
"purchase_price": 25,
"quantity": 31
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/stocks/repellat" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"krdbhfdleslfgzdicmqzur\",
\"description\": \"Est ut nesciunt repudiandae ut adipisci quis consequatur.\",
\"barcode\": \"est\",
\"unit_of_measure\": \"vjeynpaf\",
\"volume\": \"dolor\",
\"mass\": \"est\",
\"on_hold\": \"dolorum\",
\"unit_price\": 59,
\"purchase_price\": 82,
\"quantity\": 11
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/stocks/repellat"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "krdbhfdleslfgzdicmqzur",
"description": "Est ut nesciunt repudiandae ut adipisci quis consequatur.",
"barcode": "est",
"unit_of_measure": "vjeynpaf",
"volume": "dolor",
"mass": "est",
"on_hold": "dolorum",
"unit_price": 59,
"purchase_price": 82,
"quantity": 11
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/stocks/et" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/stocks/et"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/currencies" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/currencies"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/flight-enquiries" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/flight-enquiries"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/flight-enquiries" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"from_location\": \"zvvdhhulkxgn\",
\"to_location\": \"gmgxbcoxamaugbhasbf\",
\"departure_date\": \"2112-09-23\",
\"return_date\": \"2118-09-13\",
\"class_preference\": \"Business\",
\"number_of_adults\": 68,
\"number_of_children\": 20,
\"number_of_infants\": 72,
\"one_way\": false
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/flight-enquiries"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"from_location": "zvvdhhulkxgn",
"to_location": "gmgxbcoxamaugbhasbf",
"departure_date": "2112-09-23",
"return_date": "2118-09-13",
"class_preference": "Business",
"number_of_adults": 68,
"number_of_children": 20,
"number_of_infants": 72,
"one_way": false
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/flight-enquiries/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/flight-enquiries/17"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/flight-enquiries/15" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"from_location\": \"zddyouuiaohalaquqdhlr\",
\"to_location\": \"fkxazxufredmedsct\",
\"departure_date\": \"2109-04-04\",
\"return_date\": \"2111-01-12\",
\"class_preference\": \"Business\",
\"number_of_adults\": 75,
\"number_of_children\": 41,
\"number_of_infants\": 75,
\"one_way\": false
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/flight-enquiries/15"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"from_location": "zddyouuiaohalaquqdhlr",
"to_location": "fkxazxufredmedsct",
"departure_date": "2109-04-04",
"return_date": "2111-01-12",
"class_preference": "Business",
"number_of_adults": 75,
"number_of_children": 41,
"number_of_infants": 75,
"one_way": false
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/flight-enquiries/5" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"from_location\": \"hofgtbfneijaq\",
\"to_location\": \"gtdkuytdxvxavjkyeg\",
\"departure_date\": \"2111-06-04\",
\"return_date\": \"2110-10-17\",
\"class_preference\": \"Economy\",
\"number_of_adults\": 67,
\"number_of_children\": 10,
\"number_of_infants\": 27,
\"one_way\": true
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/flight-enquiries/5"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"from_location": "hofgtbfneijaq",
"to_location": "gtdkuytdxvxavjkyeg",
"departure_date": "2111-06-04",
"return_date": "2110-10-17",
"class_preference": "Economy",
"number_of_adults": 67,
"number_of_children": 10,
"number_of_infants": 27,
"one_way": true
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/flight-enquiries/3" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/flight-enquiries/3"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get all unread notifications for the authenticated user, including those where user_id is null.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/notifications/unread" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/notifications/unread"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/notifications/count
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/notifications/count" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/notifications/count"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/notifications" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/notifications"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/notifications/et" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/notifications/et"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/notifications" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/notifications"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified notification from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/notifications/pariatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/notifications/pariatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/notifications/send-whatsapp
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/notifications/send-whatsapp" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"phone\": \"commodi\",
\"message\": \"aut\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/notifications/send-whatsapp"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"phone": "commodi",
"message": "aut"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/warehouse-stocks" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/warehouse-stocks"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/warehouse-stocks" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"warehouse_id\": \"inventore\",
\"stock_id\": \"pariatur\",
\"quantity\": 15,
\"minimum_stock_level\": 22,
\"maximum_stock_level\": 80,
\"reorder_level\": 81
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/warehouse-stocks"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"warehouse_id": "inventore",
"stock_id": "pariatur",
"quantity": 15,
"minimum_stock_level": 22,
"maximum_stock_level": 80,
"reorder_level": 81
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/warehouse-stocks/dolorem" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/warehouse-stocks/dolorem"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/warehouse-stocks/et" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"new_quantity\": 81,
\"minimum_stock_level\": 56,
\"maximum_stock_level\": 63,
\"reorder_level\": 43
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/warehouse-stocks/et"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"new_quantity": 81,
"minimum_stock_level": 56,
"maximum_stock_level": 63,
"reorder_level": 43
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/warehouse-stocks/quasi" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"new_quantity\": 85,
\"minimum_stock_level\": 65,
\"maximum_stock_level\": 76,
\"reorder_level\": 79
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/warehouse-stocks/quasi"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"new_quantity": 85,
"minimum_stock_level": 65,
"maximum_stock_level": 76,
"reorder_level": 79
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/warehouse-stocks/cumque" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/warehouse-stocks/cumque"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/warehouse-stocks/increase-unit-cost
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/warehouse-stocks/increase-unit-cost" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"percentage\": 42
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/warehouse-stocks/increase-unit-cost"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"percentage": 42
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/purchase-orders" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/purchase-orders"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/purchase-orders/voluptatibus" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/purchase-orders/voluptatibus"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/goods-received-notes" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/goods-received-notes"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/goods-received-notes/eligendi" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/goods-received-notes/eligendi"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/goods-received-notes
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/goods-received-notes" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"purchase_order_detail_id\": \"adipisci\",
\"date_received\": \"2025-03-11T10:35:57\",
\"unit_of_measure\": \"voluptatibus\",
\"qty_received\": 60,
\"price\": 64,
\"serial_or_batch_number\": \"jcbhuzzaizx\",
\"expiry_date\": \"2025-03-11T10:35:57\",
\"inspected\": true,
\"inspection_result\": \"jtews\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/goods-received-notes"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"purchase_order_detail_id": "adipisci",
"date_received": "2025-03-11T10:35:57",
"unit_of_measure": "voluptatibus",
"qty_received": 60,
"price": 64,
"serial_or_batch_number": "jcbhuzzaizx",
"expiry_date": "2025-03-11T10:35:57",
"inspected": true,
"inspection_result": "jtews"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/stock-categories" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/stock-categories"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/stock-categories" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"zxlvxjdakoh\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/stock-categories"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "zxlvxjdakoh"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/stock-categories/maiores" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/stock-categories/maiores"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/stock-categories/et" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"qww\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/stock-categories/et"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "qww"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/stock-categories/asperiores" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"wabcqsfgarlmooowlzo\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/stock-categories/asperiores"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "wabcqsfgarlmooowlzo"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/stock-categories/asperiores" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/stock-categories/asperiores"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/stock-sub-categories" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/stock-sub-categories"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/stock-sub-categories" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"zbklbctknlrixrmtzid\",
\"category_id\": \"neque\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/stock-sub-categories"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "zbklbctknlrixrmtzid",
"category_id": "neque"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/stock-sub-categories/odit" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/stock-sub-categories/odit"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/stock-sub-categories/porro" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"fqzumpcbb\",
\"description\": \"Sint asperiores minima animi.\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/stock-sub-categories/porro"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "fqzumpcbb",
"description": "Sint asperiores minima animi."
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/stock-sub-categories/quisquam" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"xnimsvxiixxcunkwguzxdwcjq\",
\"description\": \"Vel recusandae nam aut sunt.\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/stock-sub-categories/quisquam"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "xnimsvxiixxcunkwguzxdwcjq",
"description": "Vel recusandae nam aut sunt."
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/stock-sub-categories/laudantium" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/stock-sub-categories/laudantium"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/stock-variants" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/stock-variants"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/stock-variants" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/stock-variants"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/stock-variants/corporis" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/stock-variants/corporis"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/stock-variants/nesciunt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/stock-variants/nesciunt"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/stock-variants/iusto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/stock-variants/iusto"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the surveys.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/surveys" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/surveys"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified survey.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/surveys/ut" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/surveys/ut"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified survey.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/surveys/et" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"yobltmngz\",
\"description\": \"Dolores voluptates sed quas quas culpa perferendis quia.\",
\"organisation\": \"laboriosam\",
\"country\": \"labore\",
\"region\": \"autem\",
\"district\": \"ea\",
\"sector\": \"dolores\",
\"questions\": [
\"magnam\"
]
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/surveys/et"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "yobltmngz",
"description": "Dolores voluptates sed quas quas culpa perferendis quia.",
"organisation": "laboriosam",
"country": "labore",
"region": "autem",
"district": "ea",
"sector": "dolores",
"questions": [
"magnam"
]
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified survey.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/surveys/enim" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"sfcogcsprcqypvpxcikivhf\",
\"description\": \"Non dolorem voluptatem nihil error pariatur eos.\",
\"organisation\": \"possimus\",
\"country\": \"explicabo\",
\"region\": \"mollitia\",
\"district\": \"delectus\",
\"sector\": \"minus\",
\"questions\": [
\"temporibus\"
]
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/surveys/enim"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "sfcogcsprcqypvpxcikivhf",
"description": "Non dolorem voluptatem nihil error pariatur eos.",
"organisation": "possimus",
"country": "explicabo",
"region": "mollitia",
"district": "delectus",
"sector": "minus",
"questions": [
"temporibus"
]
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/surveys/edit/{id}
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/surveys/edit/non" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/surveys/edit/non"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created survey.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/surveys" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"lvhdkgcekokr\",
\"description\": \"Neque iure repudiandae quasi voluptatum non reiciendis.\",
\"organisation\": \"iusto\",
\"country\": \"veniam\",
\"region\": \"cupiditate\",
\"district\": \"recusandae\",
\"sector\": \"eos\",
\"questions\": [
\"quia\"
]
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/surveys"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "lvhdkgcekokr",
"description": "Neque iure repudiandae quasi voluptatum non reiciendis.",
"organisation": "iusto",
"country": "veniam",
"region": "cupiditate",
"district": "recusandae",
"sector": "eos",
"questions": [
"quia"
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/surveys/participants
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/surveys/participants" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"norene.parisian@example.net\",
\"name\": \"rerum\",
\"gender\": \"rerum\",
\"department\": \"dolor\",
\"position\": \"sunt\",
\"age\": 4,
\"phone\": \"suscipit\",
\"survey_id\": \"modi\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/surveys/participants"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "norene.parisian@example.net",
"name": "rerum",
"gender": "rerum",
"department": "dolor",
"position": "sunt",
"age": 4,
"phone": "suscipit",
"survey_id": "modi"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the responses.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/surveys/responses" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/surveys/responses"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created response in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/surveys/responses" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"survey_id\": \"nam\",
\"phone\": \"ipsum\",
\"responses\": [
\"velit\"
]
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/surveys/responses"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"survey_id": "nam",
"phone": "ipsum",
"responses": [
"velit"
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/surveys/{company}/{id}
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/surveys/tempora/dolor" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/surveys/tempora/dolor"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (403):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Not Authorized."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/incomes" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/incomes"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/incomes" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"customer\": \"nwtdchaotkiqwyxaktjzom\",
\"service\": \"fbfinhoawfechjtkkkkyasfsw\",
\"account_number\": \"zzdmubdxnibajeonsgcab\",
\"bank\": \"aqjhnnbzuvlhgyjqnaejhuf\",
\"quantity\": 52,
\"date\": \"2025-03-11T10:35:57\",
\"description\": \"Officiis voluptas sapiente laboriosam doloremque ut quia.\",
\"amount\": 25,
\"currency\": \"mnz\",
\"payment_method\": \"hnq\",
\"reference_number\": \"hcsctdjmctzvdpwifpc\",
\"number\": \"kwkxatb\",
\"type\": \"aypgygdexcilmdmybddpxldey\",
\"split\": \"dignissimos\",
\"status\": \"esse\",
\"category\": \"zenrnkitcsydcgehs\",
\"due_date\": \"2025-03-11T10:35:57\",
\"received_by\": \"maiores\",
\"tax\": 79,
\"net_amount\": 11
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/incomes"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"customer": "nwtdchaotkiqwyxaktjzom",
"service": "fbfinhoawfechjtkkkkyasfsw",
"account_number": "zzdmubdxnibajeonsgcab",
"bank": "aqjhnnbzuvlhgyjqnaejhuf",
"quantity": 52,
"date": "2025-03-11T10:35:57",
"description": "Officiis voluptas sapiente laboriosam doloremque ut quia.",
"amount": 25,
"currency": "mnz",
"payment_method": "hnq",
"reference_number": "hcsctdjmctzvdpwifpc",
"number": "kwkxatb",
"type": "aypgygdexcilmdmybddpxldey",
"split": "dignissimos",
"status": "esse",
"category": "zenrnkitcsydcgehs",
"due_date": "2025-03-11T10:35:57",
"received_by": "maiores",
"tax": 79,
"net_amount": 11
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/incomes/quia" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/incomes/quia"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/incomes/ut" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"customer\": \"dyohrxddhxgmftqztxvofel\",
\"service\": \"vacmrnismwqbifvf\",
\"account_number\": \"q\",
\"bank\": \"bqyfugxrurplqyroytkqu\",
\"quantity\": 55,
\"date\": \"2025-03-11T10:35:57\",
\"description\": \"Voluptas sed quia labore.\",
\"amount\": 25,
\"currency\": \"fni\",
\"payment_method\": \"z\",
\"reference_number\": \"hsstaczubecelixdqgexau\",
\"number\": \"myjzbtihiw\",
\"type\": \"mmtum\",
\"split\": \"quo\",
\"status\": \"non\",
\"category\": \"lidemnmlnss\",
\"due_date\": \"2025-03-11T10:35:57\",
\"received_by\": \"rerum\",
\"tax\": 41,
\"net_amount\": 73
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/incomes/ut"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"customer": "dyohrxddhxgmftqztxvofel",
"service": "vacmrnismwqbifvf",
"account_number": "q",
"bank": "bqyfugxrurplqyroytkqu",
"quantity": 55,
"date": "2025-03-11T10:35:57",
"description": "Voluptas sed quia labore.",
"amount": 25,
"currency": "fni",
"payment_method": "z",
"reference_number": "hsstaczubecelixdqgexau",
"number": "myjzbtihiw",
"type": "mmtum",
"split": "quo",
"status": "non",
"category": "lidemnmlnss",
"due_date": "2025-03-11T10:35:57",
"received_by": "rerum",
"tax": 41,
"net_amount": 73
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/incomes/maiores" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"customer\": \"fdsqjkysf\",
\"service\": \"rlfvwhgaguyqftueoadqjrj\",
\"account_number\": \"rirxbu\",
\"bank\": \"c\",
\"quantity\": 72,
\"date\": \"2025-03-11T10:35:57\",
\"description\": \"Aperiam qui ut id dolorem.\",
\"amount\": 32,
\"currency\": \"pkr\",
\"payment_method\": \"zynuwlzbeqtocjp\",
\"reference_number\": \"wse\",
\"number\": \"rysmpihycrgdqgizkzeskpidt\",
\"type\": \"msimazjxzhyibl\",
\"split\": \"placeat\",
\"status\": \"qui\",
\"category\": \"kcz\",
\"due_date\": \"2025-03-11T10:35:57\",
\"received_by\": \"enim\",
\"tax\": 76,
\"net_amount\": 6
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/incomes/maiores"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"customer": "fdsqjkysf",
"service": "rlfvwhgaguyqftueoadqjrj",
"account_number": "rirxbu",
"bank": "c",
"quantity": 72,
"date": "2025-03-11T10:35:57",
"description": "Aperiam qui ut id dolorem.",
"amount": 32,
"currency": "pkr",
"payment_method": "zynuwlzbeqtocjp",
"reference_number": "wse",
"number": "rysmpihycrgdqgizkzeskpidt",
"type": "msimazjxzhyibl",
"split": "placeat",
"status": "qui",
"category": "kcz",
"due_date": "2025-03-11T10:35:57",
"received_by": "enim",
"tax": 76,
"net_amount": 6
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/incomes/14" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/incomes/14"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the columns.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/columns" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/columns"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created column in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/columns" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/columns"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified column in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/columns/update" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/columns/update"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified column from storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/columns/delete" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/columns/delete"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Clear all tasks from the specified column.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/columns/clear-column" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/columns/clear-column"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created column order in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/column-orders" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/column-orders"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/column-orders/move-column
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/column-orders/move-column" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/column-orders/move-column"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/report/daily
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/report/daily" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/report/daily"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/ai
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/ai" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/ai"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PUT api/ai/{id}
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/ai/officia" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/ai/officia"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/whatsapp/webhook
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/whatsapp/webhook" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/whatsapp/webhook"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/whatsapp/send
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/whatsapp/send" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/whatsapp/send"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/expenses" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/expenses"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/expenses" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"date\": \"2025-03-11T10:35:58\",
\"description\": \"Cupiditate libero rerum ullam eum rerum.\",
\"status\": \"vthcckhovicroixrgpyc\",
\"service\": \"brqtvnanyqsepaxi\",
\"amount\": 60,
\"currency\": \"sj\",
\"payment_method\": \"reowbnioomeibxdlg\",
\"receipt_number\": \"xfsyyqavwsmbjvbnnnzscmpxn\",
\"supplier\": \"oxhtayswkhlvfhxeoomb\",
\"cycle\": \"zhmfdxcixmuxskt\",
\"name_of_expense\": \"fqle\",
\"bank\": \"enezxjqajjcuzpcvdloqaypj\",
\"account_number\": \"nnzfstqtcbgit\",
\"number\": \"mndwbccwcwpacamjngyljk\",
\"type\": \"tidxoppahkbfcfmydjkckfk\",
\"split\": true,
\"category\": \"twzojzcsstpess\",
\"approved_by\": \"natus\",
\"tax\": 80,
\"net_amount\": 77,
\"due_date\": \"2074-12-06\",
\"recurring\": true
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/expenses"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"date": "2025-03-11T10:35:58",
"description": "Cupiditate libero rerum ullam eum rerum.",
"status": "vthcckhovicroixrgpyc",
"service": "brqtvnanyqsepaxi",
"amount": 60,
"currency": "sj",
"payment_method": "reowbnioomeibxdlg",
"receipt_number": "xfsyyqavwsmbjvbnnnzscmpxn",
"supplier": "oxhtayswkhlvfhxeoomb",
"cycle": "zhmfdxcixmuxskt",
"name_of_expense": "fqle",
"bank": "enezxjqajjcuzpcvdloqaypj",
"account_number": "nnzfstqtcbgit",
"number": "mndwbccwcwpacamjngyljk",
"type": "tidxoppahkbfcfmydjkckfk",
"split": true,
"category": "twzojzcsstpess",
"approved_by": "natus",
"tax": 80,
"net_amount": 77,
"due_date": "2074-12-06",
"recurring": true
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/expenses/voluptas" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/expenses/voluptas"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/expenses/libero" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"date\": \"2025-03-11T10:35:58\",
\"description\": \"Natus doloribus qui explicabo laudantium veniam ratione ipsa.\",
\"service\": \"ezq\",
\"status\": \"sqwqwzohhvqlvrktjepwefo\",
\"amount\": 32,
\"currency\": \"tic\",
\"payment_method\": \"rdnwgwbzazn\",
\"supplier\": \"nhyprwczqezccffblhcenohw\",
\"cycle\": \"ckpcuvicpetaaixfka\",
\"name_of_expense\": \"ielxldif\",
\"bank\": \"ktmylfnjihtubxbvxpoxxkun\",
\"account_number\": \"zukrdslprywpbwmro\",
\"number\": \"wjmlmm\",
\"type\": \"htyplmoiznwlrjsripd\",
\"split\": \"dignissimos\",
\"category\": \"hxcqomhvatvst\",
\"approved_by\": \"dolores\",
\"tax\": 48,
\"net_amount\": 67,
\"due_date\": \"2046-09-27\",
\"recurring\": true
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/expenses/libero"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"date": "2025-03-11T10:35:58",
"description": "Natus doloribus qui explicabo laudantium veniam ratione ipsa.",
"service": "ezq",
"status": "sqwqwzohhvqlvrktjepwefo",
"amount": 32,
"currency": "tic",
"payment_method": "rdnwgwbzazn",
"supplier": "nhyprwczqezccffblhcenohw",
"cycle": "ckpcuvicpetaaixfka",
"name_of_expense": "ielxldif",
"bank": "ktmylfnjihtubxbvxpoxxkun",
"account_number": "zukrdslprywpbwmro",
"number": "wjmlmm",
"type": "htyplmoiznwlrjsripd",
"split": "dignissimos",
"category": "hxcqomhvatvst",
"approved_by": "dolores",
"tax": 48,
"net_amount": 67,
"due_date": "2046-09-27",
"recurring": true
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/expenses/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"date\": \"2025-03-11T10:35:58\",
\"description\": \"Voluptatem ducimus in sequi voluptatem rerum deleniti.\",
\"service\": \"hnhdudyuzvfyhhmendnfxihtm\",
\"status\": \"uk\",
\"amount\": 19,
\"currency\": \"yp\",
\"payment_method\": \"qr\",
\"supplier\": \"xxhxbrobaqnwrfpofp\",
\"cycle\": \"zxmgbmrefasqyil\",
\"name_of_expense\": \"uzald\",
\"bank\": \"imbvomsbpouvgv\",
\"account_number\": \"ngvgcscfziebwrrfkvdjeef\",
\"number\": \"el\",
\"type\": \"jumrfyxa\",
\"split\": \"enim\",
\"category\": \"hkupxvbpdngzwyxahrmkv\",
\"approved_by\": \"nihil\",
\"tax\": 7,
\"net_amount\": 28,
\"due_date\": \"2093-07-09\",
\"recurring\": true
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/expenses/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"date": "2025-03-11T10:35:58",
"description": "Voluptatem ducimus in sequi voluptatem rerum deleniti.",
"service": "hnhdudyuzvfyhhmendnfxihtm",
"status": "uk",
"amount": 19,
"currency": "yp",
"payment_method": "qr",
"supplier": "xxhxbrobaqnwrfpofp",
"cycle": "zxmgbmrefasqyil",
"name_of_expense": "uzald",
"bank": "imbvomsbpouvgv",
"account_number": "ngvgcscfziebwrrfkvdjeef",
"number": "el",
"type": "jumrfyxa",
"split": "enim",
"category": "hkupxvbpdngzwyxahrmkv",
"approved_by": "nihil",
"tax": 7,
"net_amount": 28,
"due_date": "2093-07-09",
"recurring": true
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/expenses/20" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/expenses/20"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/quotations/{id}/downloadPdf
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/quotations/adipisci/downloadPdf" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/quotations/adipisci/downloadPdf"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (500):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "SQLSTATE[3D000]: Invalid catalog name: 1046 No database selected (Connection: tenant, SQL: select * from `quotations` where `quotations`.`id` = adipisci and `quotations`.`deleted_at` is null limit 1)",
"exception": "Illuminate\\Database\\QueryException",
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Connection.php",
"line": 813,
"trace": [
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Connection.php",
"line": 767,
"function": "runQueryCallback",
"class": "Illuminate\\Database\\Connection",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Connection.php",
"line": 398,
"function": "run",
"class": "Illuminate\\Database\\Connection",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Query\\Builder.php",
"line": 2898,
"function": "select",
"class": "Illuminate\\Database\\Connection",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Query\\Builder.php",
"line": 2883,
"function": "runSelect",
"class": "Illuminate\\Database\\Query\\Builder",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Query\\Builder.php",
"line": 3467,
"function": "Illuminate\\Database\\Query\\{closure}",
"class": "Illuminate\\Database\\Query\\Builder",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Query\\Builder.php",
"line": 2882,
"function": "onceWithColumns",
"class": "Illuminate\\Database\\Query\\Builder",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Eloquent\\Builder.php",
"line": 738,
"function": "get",
"class": "Illuminate\\Database\\Query\\Builder",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Eloquent\\Builder.php",
"line": 722,
"function": "getModels",
"class": "Illuminate\\Database\\Eloquent\\Builder",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Concerns\\BuildsQueries.php",
"line": 333,
"function": "get",
"class": "Illuminate\\Database\\Eloquent\\Builder",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Eloquent\\Builder.php",
"line": 448,
"function": "first",
"class": "Illuminate\\Database\\Eloquent\\Builder",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Eloquent\\Builder.php",
"line": 480,
"function": "find",
"class": "Illuminate\\Database\\Eloquent\\Builder",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Support\\Traits\\ForwardsCalls.php",
"line": 23,
"function": "findOrFail",
"class": "Illuminate\\Database\\Eloquent\\Builder",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Eloquent\\Model.php",
"line": 2339,
"function": "forwardCallTo",
"class": "Illuminate\\Database\\Eloquent\\Model",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Eloquent\\Model.php",
"line": 2351,
"function": "__call",
"class": "Illuminate\\Database\\Eloquent\\Model",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\app\\Http\\Controllers\\PDFController.php",
"line": 13,
"function": "__callStatic",
"class": "Illuminate\\Database\\Eloquent\\Model",
"type": "::"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\ControllerDispatcher.php",
"line": 46,
"function": "downloadQuotationPdf",
"class": "App\\Http\\Controllers\\PDFController",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Route.php",
"line": 260,
"function": "dispatch",
"class": "Illuminate\\Routing\\ControllerDispatcher",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Route.php",
"line": 206,
"function": "runController",
"class": "Illuminate\\Routing\\Route",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 806,
"function": "run",
"class": "Illuminate\\Routing\\Route",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 144,
"function": "Illuminate\\Routing\\{closure}",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Middleware\\SubstituteBindings.php",
"line": 50,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Routing\\Middleware\\SubstituteBindings",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 119,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 805,
"function": "then",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 784,
"function": "runRouteWithinStack",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 748,
"function": "runRoute",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 737,
"function": "dispatchToRoute",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
"line": 200,
"function": "dispatch",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 144,
"function": "Illuminate\\Foundation\\Http\\{closure}",
"class": "Illuminate\\Foundation\\Http\\Kernel",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest.php",
"line": 21,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull.php",
"line": 31,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest.php",
"line": 21,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\TrimStrings.php",
"line": 50,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\TrimStrings",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Middleware\\ValidatePostSize.php",
"line": 27,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Http\\Middleware\\ValidatePostSize",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance.php",
"line": 110,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Middleware\\HandleCors.php",
"line": 62,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Http\\Middleware\\HandleCors",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Middleware\\TrustProxies.php",
"line": 57,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Http\\Middleware\\TrustProxies",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 119,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
"line": 175,
"function": "then",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
"line": 144,
"function": "sendRequestThroughRouter",
"class": "Illuminate\\Foundation\\Http\\Kernel",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 300,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Kernel",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 288,
"function": "callLaravelOrLumenRoute",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 91,
"function": "makeApiCall",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 44,
"function": "makeResponseCall",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 35,
"function": "makeResponseCallIfConditionsPass",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Extractor.php",
"line": 236,
"function": "__invoke",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Extractor.php",
"line": 163,
"function": "iterateThroughStrategies",
"class": "Knuckles\\Scribe\\Extracting\\Extractor",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Extractor.php",
"line": 95,
"function": "fetchResponses",
"class": "Knuckles\\Scribe\\Extracting\\Extractor",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\GroupedEndpoints\\GroupedEndpointsFromApp.php",
"line": 125,
"function": "processRoute",
"class": "Knuckles\\Scribe\\Extracting\\Extractor",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\GroupedEndpoints\\GroupedEndpointsFromApp.php",
"line": 72,
"function": "extractEndpointsInfoFromLaravelApp",
"class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\GroupedEndpoints\\GroupedEndpointsFromApp.php",
"line": 50,
"function": "extractEndpointsInfoAndWriteToDisk",
"class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Commands\\GenerateDocumentation.php",
"line": 53,
"function": "get",
"class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
"line": 36,
"function": "handle",
"class": "Knuckles\\Scribe\\Commands\\GenerateDocumentation",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\Util.php",
"line": 41,
"function": "Illuminate\\Container\\{closure}",
"class": "Illuminate\\Container\\BoundMethod",
"type": "::"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
"line": 93,
"function": "unwrapIfClosure",
"class": "Illuminate\\Container\\Util",
"type": "::"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
"line": 35,
"function": "callBoundMethod",
"class": "Illuminate\\Container\\BoundMethod",
"type": "::"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\Container.php",
"line": 662,
"function": "call",
"class": "Illuminate\\Container\\BoundMethod",
"type": "::"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Console\\Command.php",
"line": 212,
"function": "call",
"class": "Illuminate\\Container\\Container",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\symfony\\console\\Command\\Command.php",
"line": 279,
"function": "execute",
"class": "Illuminate\\Console\\Command",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Console\\Command.php",
"line": 181,
"function": "run",
"class": "Symfony\\Component\\Console\\Command\\Command",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\symfony\\console\\Application.php",
"line": 1049,
"function": "run",
"class": "Illuminate\\Console\\Command",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\symfony\\console\\Application.php",
"line": 318,
"function": "doRunCommand",
"class": "Symfony\\Component\\Console\\Application",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\symfony\\console\\Application.php",
"line": 169,
"function": "doRun",
"class": "Symfony\\Component\\Console\\Application",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Console\\Kernel.php",
"line": 196,
"function": "run",
"class": "Symfony\\Component\\Console\\Application",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Application.php",
"line": 1183,
"function": "handle",
"class": "Illuminate\\Foundation\\Console\\Kernel",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\artisan",
"line": 13,
"function": "handleCommand",
"class": "Illuminate\\Foundation\\Application",
"type": "->"
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/dashboards/app
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/dashboards/app" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/dashboards/app"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/dashboards/corporate-app
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/dashboards/corporate-app" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/dashboards/corporate-app"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/dashboards/banking
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/dashboards/banking" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/dashboards/banking"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/dashboards/corporate-banking
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/dashboards/corporate-banking" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/dashboards/corporate-banking"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/dashboards/project-insights
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/dashboards/project-insights" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/dashboards/project-insights"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/dashboards/management-reporting
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/dashboards/management-reporting" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/dashboards/management-reporting"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/shop-targets" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/shop-targets"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/shop-targets" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"warehouse_id\": \"commodi\",
\"sales_target\": 77
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/shop-targets"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"warehouse_id": "commodi",
"sales_target": 77
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/shop-targets/id" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/shop-targets/id"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/shop-targets/accusantium" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"sales_target\": 61
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/shop-targets/accusantium"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"sales_target": 61
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/shop-targets/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"sales_target\": 12
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/shop-targets/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"sales_target": 12
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/shop-targets/animi" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/shop-targets/animi"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/google/upload
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/google/upload" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/google/upload"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (500):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Undefined array key \"access_token\"",
"exception": "ErrorException",
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\app\\Services\\Storage\\StorageService.php",
"line": 116,
"trace": [
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Bootstrap\\HandleExceptions.php",
"line": 256,
"function": "handleError",
"class": "Illuminate\\Foundation\\Bootstrap\\HandleExceptions",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\app\\Services\\Storage\\StorageService.php",
"line": 116,
"function": "Illuminate\\Foundation\\Bootstrap\\{closure}",
"class": "Illuminate\\Foundation\\Bootstrap\\HandleExceptions",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\app\\Services\\Storage\\StorageService.php",
"line": 46,
"function": "token",
"class": "App\\Services\\Storage\\StorageService",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\app\\Http\\Controllers\\Api\\GoogleDriveController.php",
"line": 24,
"function": "index",
"class": "App\\Services\\Storage\\StorageService",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\ControllerDispatcher.php",
"line": 46,
"function": "index",
"class": "App\\Http\\Controllers\\Api\\GoogleDriveController",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Route.php",
"line": 260,
"function": "dispatch",
"class": "Illuminate\\Routing\\ControllerDispatcher",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Route.php",
"line": 206,
"function": "runController",
"class": "Illuminate\\Routing\\Route",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 806,
"function": "run",
"class": "Illuminate\\Routing\\Route",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 144,
"function": "Illuminate\\Routing\\{closure}",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Middleware\\SubstituteBindings.php",
"line": 50,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Routing\\Middleware\\SubstituteBindings",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 119,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 805,
"function": "then",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 784,
"function": "runRouteWithinStack",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 748,
"function": "runRoute",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 737,
"function": "dispatchToRoute",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
"line": 200,
"function": "dispatch",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 144,
"function": "Illuminate\\Foundation\\Http\\{closure}",
"class": "Illuminate\\Foundation\\Http\\Kernel",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest.php",
"line": 21,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull.php",
"line": 31,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest.php",
"line": 21,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\TrimStrings.php",
"line": 50,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\TrimStrings",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Middleware\\ValidatePostSize.php",
"line": 27,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Http\\Middleware\\ValidatePostSize",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance.php",
"line": 110,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Middleware\\HandleCors.php",
"line": 62,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Http\\Middleware\\HandleCors",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Middleware\\TrustProxies.php",
"line": 57,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Http\\Middleware\\TrustProxies",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 119,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
"line": 175,
"function": "then",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
"line": 144,
"function": "sendRequestThroughRouter",
"class": "Illuminate\\Foundation\\Http\\Kernel",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 300,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Kernel",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 288,
"function": "callLaravelOrLumenRoute",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 91,
"function": "makeApiCall",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 44,
"function": "makeResponseCall",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 35,
"function": "makeResponseCallIfConditionsPass",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Extractor.php",
"line": 236,
"function": "__invoke",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Extractor.php",
"line": 163,
"function": "iterateThroughStrategies",
"class": "Knuckles\\Scribe\\Extracting\\Extractor",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Extractor.php",
"line": 95,
"function": "fetchResponses",
"class": "Knuckles\\Scribe\\Extracting\\Extractor",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\GroupedEndpoints\\GroupedEndpointsFromApp.php",
"line": 125,
"function": "processRoute",
"class": "Knuckles\\Scribe\\Extracting\\Extractor",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\GroupedEndpoints\\GroupedEndpointsFromApp.php",
"line": 72,
"function": "extractEndpointsInfoFromLaravelApp",
"class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\GroupedEndpoints\\GroupedEndpointsFromApp.php",
"line": 50,
"function": "extractEndpointsInfoAndWriteToDisk",
"class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Commands\\GenerateDocumentation.php",
"line": 53,
"function": "get",
"class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
"line": 36,
"function": "handle",
"class": "Knuckles\\Scribe\\Commands\\GenerateDocumentation",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\Util.php",
"line": 41,
"function": "Illuminate\\Container\\{closure}",
"class": "Illuminate\\Container\\BoundMethod",
"type": "::"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
"line": 93,
"function": "unwrapIfClosure",
"class": "Illuminate\\Container\\Util",
"type": "::"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
"line": 35,
"function": "callBoundMethod",
"class": "Illuminate\\Container\\BoundMethod",
"type": "::"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\Container.php",
"line": 662,
"function": "call",
"class": "Illuminate\\Container\\BoundMethod",
"type": "::"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Console\\Command.php",
"line": 212,
"function": "call",
"class": "Illuminate\\Container\\Container",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\symfony\\console\\Command\\Command.php",
"line": 279,
"function": "execute",
"class": "Illuminate\\Console\\Command",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Console\\Command.php",
"line": 181,
"function": "run",
"class": "Symfony\\Component\\Console\\Command\\Command",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\symfony\\console\\Application.php",
"line": 1049,
"function": "run",
"class": "Illuminate\\Console\\Command",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\symfony\\console\\Application.php",
"line": 318,
"function": "doRunCommand",
"class": "Symfony\\Component\\Console\\Application",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\symfony\\console\\Application.php",
"line": 169,
"function": "doRun",
"class": "Symfony\\Component\\Console\\Application",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Console\\Kernel.php",
"line": 196,
"function": "run",
"class": "Symfony\\Component\\Console\\Application",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Application.php",
"line": 1183,
"function": "handle",
"class": "Illuminate\\Foundation\\Console\\Kernel",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\artisan",
"line": 13,
"function": "handleCommand",
"class": "Illuminate\\Foundation\\Application",
"type": "->"
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/google/upload
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/google/upload" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/google/upload"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/google/storage
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/google/storage" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/google/storage"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (500):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Undefined array key \"access_token\"",
"exception": "ErrorException",
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\app\\Services\\Storage\\StorageService.php",
"line": 116,
"trace": [
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Bootstrap\\HandleExceptions.php",
"line": 256,
"function": "handleError",
"class": "Illuminate\\Foundation\\Bootstrap\\HandleExceptions",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\app\\Services\\Storage\\StorageService.php",
"line": 116,
"function": "Illuminate\\Foundation\\Bootstrap\\{closure}",
"class": "Illuminate\\Foundation\\Bootstrap\\HandleExceptions",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\app\\Services\\Storage\\StorageService.php",
"line": 302,
"function": "token",
"class": "App\\Services\\Storage\\StorageService",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\app\\Http\\Controllers\\Api\\GoogleDriveController.php",
"line": 41,
"function": "getStorageInfo",
"class": "App\\Services\\Storage\\StorageService",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\ControllerDispatcher.php",
"line": 46,
"function": "getStorage",
"class": "App\\Http\\Controllers\\Api\\GoogleDriveController",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Route.php",
"line": 260,
"function": "dispatch",
"class": "Illuminate\\Routing\\ControllerDispatcher",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Route.php",
"line": 206,
"function": "runController",
"class": "Illuminate\\Routing\\Route",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 806,
"function": "run",
"class": "Illuminate\\Routing\\Route",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 144,
"function": "Illuminate\\Routing\\{closure}",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Middleware\\SubstituteBindings.php",
"line": 50,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Routing\\Middleware\\SubstituteBindings",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 119,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 805,
"function": "then",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 784,
"function": "runRouteWithinStack",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 748,
"function": "runRoute",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 737,
"function": "dispatchToRoute",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
"line": 200,
"function": "dispatch",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 144,
"function": "Illuminate\\Foundation\\Http\\{closure}",
"class": "Illuminate\\Foundation\\Http\\Kernel",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest.php",
"line": 21,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull.php",
"line": 31,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest.php",
"line": 21,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\TrimStrings.php",
"line": 50,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\TrimStrings",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Middleware\\ValidatePostSize.php",
"line": 27,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Http\\Middleware\\ValidatePostSize",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance.php",
"line": 110,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Middleware\\HandleCors.php",
"line": 62,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Http\\Middleware\\HandleCors",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Middleware\\TrustProxies.php",
"line": 57,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Http\\Middleware\\TrustProxies",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 119,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
"line": 175,
"function": "then",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
"line": 144,
"function": "sendRequestThroughRouter",
"class": "Illuminate\\Foundation\\Http\\Kernel",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 300,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Kernel",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 288,
"function": "callLaravelOrLumenRoute",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 91,
"function": "makeApiCall",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 44,
"function": "makeResponseCall",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 35,
"function": "makeResponseCallIfConditionsPass",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Extractor.php",
"line": 236,
"function": "__invoke",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Extractor.php",
"line": 163,
"function": "iterateThroughStrategies",
"class": "Knuckles\\Scribe\\Extracting\\Extractor",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Extractor.php",
"line": 95,
"function": "fetchResponses",
"class": "Knuckles\\Scribe\\Extracting\\Extractor",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\GroupedEndpoints\\GroupedEndpointsFromApp.php",
"line": 125,
"function": "processRoute",
"class": "Knuckles\\Scribe\\Extracting\\Extractor",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\GroupedEndpoints\\GroupedEndpointsFromApp.php",
"line": 72,
"function": "extractEndpointsInfoFromLaravelApp",
"class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\GroupedEndpoints\\GroupedEndpointsFromApp.php",
"line": 50,
"function": "extractEndpointsInfoAndWriteToDisk",
"class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Commands\\GenerateDocumentation.php",
"line": 53,
"function": "get",
"class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
"line": 36,
"function": "handle",
"class": "Knuckles\\Scribe\\Commands\\GenerateDocumentation",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\Util.php",
"line": 41,
"function": "Illuminate\\Container\\{closure}",
"class": "Illuminate\\Container\\BoundMethod",
"type": "::"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
"line": 93,
"function": "unwrapIfClosure",
"class": "Illuminate\\Container\\Util",
"type": "::"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
"line": 35,
"function": "callBoundMethod",
"class": "Illuminate\\Container\\BoundMethod",
"type": "::"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\Container.php",
"line": 662,
"function": "call",
"class": "Illuminate\\Container\\BoundMethod",
"type": "::"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Console\\Command.php",
"line": 212,
"function": "call",
"class": "Illuminate\\Container\\Container",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\symfony\\console\\Command\\Command.php",
"line": 279,
"function": "execute",
"class": "Illuminate\\Console\\Command",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Console\\Command.php",
"line": 181,
"function": "run",
"class": "Symfony\\Component\\Console\\Command\\Command",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\symfony\\console\\Application.php",
"line": 1049,
"function": "run",
"class": "Illuminate\\Console\\Command",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\symfony\\console\\Application.php",
"line": 318,
"function": "doRunCommand",
"class": "Symfony\\Component\\Console\\Application",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\symfony\\console\\Application.php",
"line": 169,
"function": "doRun",
"class": "Symfony\\Component\\Console\\Application",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Console\\Kernel.php",
"line": 196,
"function": "run",
"class": "Symfony\\Component\\Console\\Application",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Application.php",
"line": 1183,
"function": "handle",
"class": "Illuminate\\Foundation\\Console\\Kernel",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\artisan",
"line": 13,
"function": "handleCommand",
"class": "Illuminate\\Foundation\\Application",
"type": "->"
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/chatgpt-reports
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/chatgpt-reports" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/chatgpt-reports"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PUT api/chatgpt-reports/{id}
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/chatgpt-reports/in" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/chatgpt-reports/in"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/export/customers
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/export/customers" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/export/customers"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/tenants
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/tenants" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/tenants"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/tenants/{id}
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/tenants/67" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/tenants/67"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PUT api/tenants/update-status/{id}
requires authentication
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/tenants/update-status/praesentium" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/tenants/update-status/praesentium"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/tenants/update-status/{id}
requires authentication
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/tenants/update-status/deserunt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/tenants/update-status/deserunt"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PATCH",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/tenants/register-requests
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/tenants/register-requests" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/tenants/register-requests"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/tenants/requests-received
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/tenants/requests-received" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/tenants/requests-received"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/tenants/accept-terms/{id}
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/tenants/accept-terms/facere" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/tenants/accept-terms/facere"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/tenants/notify-all
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/tenants/notify-all" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"subject\": \"jlvqjmgpghxrquroixozhpefw\",
\"message\": \"gylwn\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/tenants/notify-all"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"subject": "jlvqjmgpghxrquroixozhpefw",
"message": "gylwn"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/tenants/reject-terms/{id}
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/tenants/reject-terms/error" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/tenants/reject-terms/error"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get all rooms.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/rooms" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/rooms"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a new room.
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/rooms" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"room_number\": \"ullam\",
\"hotel_floor_id\": \"a569ea5f-f892-3342-9aca-d1ae14b89723\",
\"room_class_id\": \"96c65fbb-fdac-3b09-93d8-3a94dfc8dff9\",
\"room_status_id\": \"eb936344-d336-3d07-8e91-0ab767d5959f\",
\"max_capacity\": 7,
\"description\": \"Libero cum perspiciatis aut sunt.\",
\"amenities\": \"vqcwzsbgsxjldodb\",
\"housekeeping_status\": \"nostrum\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/rooms"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"room_number": "ullam",
"hotel_floor_id": "a569ea5f-f892-3342-9aca-d1ae14b89723",
"room_class_id": "96c65fbb-fdac-3b09-93d8-3a94dfc8dff9",
"room_status_id": "eb936344-d336-3d07-8e91-0ab767d5959f",
"max_capacity": 7,
"description": "Libero cum perspiciatis aut sunt.",
"amenities": "vqcwzsbgsxjldodb",
"housekeeping_status": "nostrum"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get a single room.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/rooms/id" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/rooms/id"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update a room.
requires authentication
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/rooms/deserunt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"room_number\": \"ypbtjgchzfaeldsqnfor\",
\"hotel_floor_id\": \"d1f4db67-7589-38ee-b703-b615eedf41b2\",
\"room_class_id\": \"fee21f36-5545-3146-9bb4-9d69e406ea5a\",
\"room_status_id\": \"b88cbb17-07f7-36aa-a833-50e028781d0a\",
\"max_capacity\": 15,
\"description\": \"Atque itaque velit voluptatem praesentium impedit nemo.\",
\"amenities\": \"emktzrtqclyphpch\",
\"housekeeping_status\": \"ut\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/rooms/deserunt"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"room_number": "ypbtjgchzfaeldsqnfor",
"hotel_floor_id": "d1f4db67-7589-38ee-b703-b615eedf41b2",
"room_class_id": "fee21f36-5545-3146-9bb4-9d69e406ea5a",
"room_status_id": "b88cbb17-07f7-36aa-a833-50e028781d0a",
"max_capacity": 15,
"description": "Atque itaque velit voluptatem praesentium impedit nemo.",
"amenities": "emktzrtqclyphpch",
"housekeeping_status": "ut"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update a room.
requires authentication
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/rooms/voluptas" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"room_number\": \"swaxrjeznar\",
\"hotel_floor_id\": \"260ac7f3-c47a-3907-b905-38e63964a463\",
\"room_class_id\": \"02520b43-4974-3637-9c74-bb6e9db35f5e\",
\"room_status_id\": \"7391f0f9-3707-3d0a-8613-60c58bc20aaa\",
\"max_capacity\": 79,
\"description\": \"Maxime laborum non blanditiis optio eum a sed.\",
\"amenities\": \"eoal\",
\"housekeeping_status\": \"saepe\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/rooms/voluptas"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"room_number": "swaxrjeznar",
"hotel_floor_id": "260ac7f3-c47a-3907-b905-38e63964a463",
"room_class_id": "02520b43-4974-3637-9c74-bb6e9db35f5e",
"room_status_id": "7391f0f9-3707-3d0a-8613-60c58bc20aaa",
"max_capacity": 79,
"description": "Maxime laborum non blanditiis optio eum a sed.",
"amenities": "eoal",
"housekeeping_status": "saepe"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete a room.
requires authentication
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/rooms/fuga" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/rooms/fuga"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get rooms by floor.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/rooms/floor/repellat" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/rooms/floor/repellat"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get rooms by status.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/rooms/status/quaerat" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/rooms/status/quaerat"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get available rooms (not occupied).
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/rooms/available" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/rooms/available"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get all features.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/room-features" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/room-features"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a new feature.
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/room-features" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"wmp\",
\"description\": \"Ab reprehenderit sapiente velit.\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/room-features"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "wmp",
"description": "Ab reprehenderit sapiente velit."
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get a single feature.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/room-features/perferendis" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/room-features/perferendis"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update a feature.
requires authentication
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/room-features/dignissimos" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"thfqrldniwdtyknulfmef\",
\"description\": \"Minima et quo quia tempore neque totam aliquid.\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/room-features/dignissimos"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "thfqrldniwdtyknulfmef",
"description": "Minima et quo quia tempore neque totam aliquid."
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update a feature.
requires authentication
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/room-features/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"slalhcfqtmjejjtinxdcen\",
\"description\": \"Magnam fuga doloribus qui est eum.\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/room-features/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "slalhcfqtmjejjtinxdcen",
"description": "Magnam fuga doloribus qui est eum."
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete a feature.
requires authentication
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/room-features/molestiae" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/room-features/molestiae"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get all bed types.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/room-bed-types" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/room-bed-types"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a new bed type.
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/room-bed-types" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"cqfsgylrnehvuvxjs\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/room-bed-types"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "cqfsgylrnehvuvxjs"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get a single bed type.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/room-bed-types/qui" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/room-bed-types/qui"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update a bed type.
requires authentication
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/room-bed-types/dolorem" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"zzdfwloxusboqxkbg\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/room-bed-types/dolorem"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "zzdfwloxusboqxkbg"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update a bed type.
requires authentication
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/room-bed-types/et" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"s\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/room-bed-types/et"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "s"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete a bed type.
requires authentication
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/room-bed-types/dicta" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/room-bed-types/dicta"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/room-classes" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/room-classes"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/room-classes" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "name=iwahtbggnlucwzdkgp"\
--form "description=Veritatis nisi qui vel dolor hic voluptates laudantium."\
--form "price=29"\
--form "max_guests=58"\
--form "features[]=12cb0570-4082-3f4e-95e0-18ed96c93860"\
--form "bed_types[]=ut"\
--form "alt_texts[]=xjeognke"\
--form "images[]=@C:\Users\Celestial\AppData\Local\Temp\php6037.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/room-classes"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('name', 'iwahtbggnlucwzdkgp');
body.append('description', 'Veritatis nisi qui vel dolor hic voluptates laudantium.');
body.append('price', '29');
body.append('max_guests', '58');
body.append('features[]', '12cb0570-4082-3f4e-95e0-18ed96c93860');
body.append('bed_types[]', 'ut');
body.append('alt_texts[]', 'xjeognke');
body.append('images[]', document.querySelector('input[name="images[]"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/room-classes/odio" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/room-classes/odio"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/room-classes/aut" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "name=tyfvb"\
--form "description=Quod magnam eius qui molestiae autem."\
--form "price=72"\
--form "max_guests=80"\
--form "features[]=5848c9c4-901a-32a6-876f-afc37a7e0c43"\
--form "bed_types[]=culpa"\
--form "alt_texts[]=lbznmetiqiiw"\
--form "images[]=@C:\Users\Celestial\AppData\Local\Temp\php6058.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/room-classes/aut"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('name', 'tyfvb');
body.append('description', 'Quod magnam eius qui molestiae autem.');
body.append('price', '72');
body.append('max_guests', '80');
body.append('features[]', '5848c9c4-901a-32a6-876f-afc37a7e0c43');
body.append('bed_types[]', 'culpa');
body.append('alt_texts[]', 'lbznmetiqiiw');
body.append('images[]', document.querySelector('input[name="images[]"]').files[0]);
fetch(url, {
method: "PUT",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/room-classes/accusantium" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "name=ouwwgcwpudjkj"\
--form "description=Iure saepe alias rem ex aliquam aut."\
--form "price=16"\
--form "max_guests=19"\
--form "features[]=a505a5a9-ae53-3cec-90bd-9929270de474"\
--form "bed_types[]=qui"\
--form "alt_texts[]=yx"\
--form "images[]=@C:\Users\Celestial\AppData\Local\Temp\php6068.tmp" const url = new URL(
"https://feexid.development.medixmw.com/api/room-classes/accusantium"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('name', 'ouwwgcwpudjkj');
body.append('description', 'Iure saepe alias rem ex aliquam aut.');
body.append('price', '16');
body.append('max_guests', '19');
body.append('features[]', 'a505a5a9-ae53-3cec-90bd-9929270de474');
body.append('bed_types[]', 'qui');
body.append('alt_texts[]', 'yx');
body.append('images[]', document.querySelector('input[name="images[]"]').files[0]);
fetch(url, {
method: "PATCH",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/room-classes/cupiditate" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/room-classes/cupiditate"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get all room statuses.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/room-statuses" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/room-statuses"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a new room status.
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/room-statuses" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"bk\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/room-statuses"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "bk"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get a single room status.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/room-statuses/libero" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/room-statuses/libero"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update a room status.
requires authentication
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/room-statuses/aperiam" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"h\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/room-statuses/aperiam"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "h"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update a room status.
requires authentication
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/room-statuses/pariatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"lcrfiyhxssmrcigiczfct\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/room-statuses/pariatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "lcrfiyhxssmrcigiczfct"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete a room status.
requires authentication
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/room-statuses/reprehenderit" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/room-statuses/reprehenderit"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/room-class-bed-types
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/room-class-bed-types" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/room-class-bed-types"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/room-class-bed-types
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/room-class-bed-types" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"room_class_id\": \"73142cdf-f7bd-35e1-a3f9-ca632bdc1895\",
\"bed_type_id\": \"e849118b-a47b-37e7-8446-3ff54a16bdcb\",
\"num_beds\": 15
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/room-class-bed-types"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"room_class_id": "73142cdf-f7bd-35e1-a3f9-ca632bdc1895",
"bed_type_id": "e849118b-a47b-37e7-8446-3ff54a16bdcb",
"num_beds": 15
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/room-class-bed-types/{id}
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/room-class-bed-types/praesentium" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/room-class-bed-types/praesentium"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PUT api/room-class-bed-types/{id}
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/room-class-bed-types/minima" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"room_class_id\": \"51f6e023-ee85-396c-b0af-114c5a088ebd\",
\"bed_type_id\": \"34dd619e-5c68-30d4-9d47-12113e9d9e21\",
\"num_beds\": 16
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/room-class-bed-types/minima"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"room_class_id": "51f6e023-ee85-396c-b0af-114c5a088ebd",
"bed_type_id": "34dd619e-5c68-30d4-9d47-12113e9d9e21",
"num_beds": 16
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/room-class-bed-types/{id}
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/room-class-bed-types/dolor" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"room_class_id\": \"083cafa5-800f-395a-b797-da119e222f2a\",
\"bed_type_id\": \"57b6b0cc-3662-3eff-84ed-79b0b8134f00\",
\"num_beds\": 65
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/room-class-bed-types/dolor"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"room_class_id": "083cafa5-800f-395a-b797-da119e222f2a",
"bed_type_id": "57b6b0cc-3662-3eff-84ed-79b0b8134f00",
"num_beds": 65
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/room-class-bed-types/{id}
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/room-class-bed-types/omnis" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/room-class-bed-types/omnis"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/hotel-floors" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/hotel-floors"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/hotel-floors" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"floor_number\": 65,
\"name\": \"xgndtnkgp\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/hotel-floors"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"floor_number": 65,
"name": "xgndtnkgp"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/hotel-floors/deleniti" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/hotel-floors/deleniti"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/hotel-floors/maiores" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"floor_number\": 12,
\"name\": \"hljtikihmgtwftj\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/hotel-floors/maiores"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"floor_number": 12,
"name": "hljtikihmgtwftj"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/hotel-floors/repudiandae" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"floor_number\": 9,
\"name\": \"xcyooaulijswnpiavlsyzl\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/hotel-floors/repudiandae"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"floor_number": 9,
"name": "xcyooaulijswnpiavlsyzl"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/hotel-floors/corporis" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/hotel-floors/corporis"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get all housekeeping requests.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/room-house-keeping-requests" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/room-house-keeping-requests"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a new housekeeping request.
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/room-house-keeping-requests" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"room_id\": \"413c768d-0e12-32b1-8e90-ef7f100578ea\",
\"request_type\": \"ao\",
\"status\": \"pending\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/room-house-keeping-requests"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"room_id": "413c768d-0e12-32b1-8e90-ef7f100578ea",
"request_type": "ao",
"status": "pending"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get a single housekeeping request.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/room-house-keeping-requests/enim" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/room-house-keeping-requests/enim"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update a housekeeping request.
requires authentication
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/room-house-keeping-requests/sint" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"request_type\": \"pmxtawsmlvfamvbayl\",
\"status\": \"in_progress\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/room-house-keeping-requests/sint"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"request_type": "pmxtawsmlvfamvbayl",
"status": "in_progress"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update a housekeeping request.
requires authentication
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/room-house-keeping-requests/facilis" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"request_type\": \"usvwddufpwrfuvsdgfdmf\",
\"status\": \"completed\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/room-house-keeping-requests/facilis"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"request_type": "usvwddufpwrfuvsdgfdmf",
"status": "completed"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete a housekeeping request.
requires authentication
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/room-house-keeping-requests/blanditiis" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/room-house-keeping-requests/blanditiis"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get all promo codes.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/promo-codes" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/promo-codes"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a new promo code.
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/promo-codes" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"code\": \"qhpg\",
\"discount_amount\": 85,
\"discount_percentage\": 25,
\"valid_from\": \"2025-03-11T10:36:01\",
\"valid_until\": \"2054-06-30\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/promo-codes"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"code": "qhpg",
"discount_amount": 85,
"discount_percentage": 25,
"valid_from": "2025-03-11T10:36:01",
"valid_until": "2054-06-30"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get a single promo code.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/promo-codes/quas" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/promo-codes/quas"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update a promo code.
requires authentication
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/promo-codes/corporis" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"code\": \"wgnqoystznq\",
\"discount_amount\": 73,
\"discount_percentage\": 6,
\"valid_from\": \"2025-03-11T10:36:01\",
\"valid_until\": \"2109-12-15\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/promo-codes/corporis"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"code": "wgnqoystznq",
"discount_amount": 73,
"discount_percentage": 6,
"valid_from": "2025-03-11T10:36:01",
"valid_until": "2109-12-15"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update a promo code.
requires authentication
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/promo-codes/ipsa" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"code\": \"lxycxuueadcmejwmpmmk\",
\"discount_amount\": 40,
\"discount_percentage\": 24,
\"valid_from\": \"2025-03-11T10:36:01\",
\"valid_until\": \"2041-06-13\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/promo-codes/ipsa"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"code": "lxycxuueadcmejwmpmmk",
"discount_amount": 40,
"discount_percentage": 24,
"valid_from": "2025-03-11T10:36:01",
"valid_until": "2041-06-13"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete a promo code.
requires authentication
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/promo-codes/maxime" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/promo-codes/maxime"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get all guests.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/hotel-guests" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/hotel-guests"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a new guest.
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/hotel-guests" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"dtcshpflfhkyehqydirwds\",
\"email\": \"terrence94@example.org\",
\"phone\": \"hazypgntjxqfwhemkbi\",
\"company\": \"qaownrhmla\",
\"address\": \"iopowckjpehxnkbr\",
\"nationality\": \"gconcrghompvewwhhppvn\",
\"id_document_type\": \"National ID\",
\"id_document_number\": \"bkemizpsgqucjtsu\",
\"preferred_language\": \"pwncyyebvlcrrqjdjks\",
\"special_requests\": \"inventore\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/hotel-guests"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "dtcshpflfhkyehqydirwds",
"email": "terrence94@example.org",
"phone": "hazypgntjxqfwhemkbi",
"company": "qaownrhmla",
"address": "iopowckjpehxnkbr",
"nationality": "gconcrghompvewwhhppvn",
"id_document_type": "National ID",
"id_document_number": "bkemizpsgqucjtsu",
"preferred_language": "pwncyyebvlcrrqjdjks",
"special_requests": "inventore"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get a single guest.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/hotel-guests/ex" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/hotel-guests/ex"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update a guest.
requires authentication
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/hotel-guests/nobis" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"tebrmiazmccviajgzeje\",
\"email\": \"melba19@example.org\",
\"phone\": \"hannd\",
\"company\": \"khoofezljjlvjybezsucyqzga\",
\"address\": \"ev\",
\"nationality\": \"yfpbwbg\",
\"id_document_type\": \"Driver\'s License\",
\"id_document_number\": \"skdwhkkn\",
\"preferred_language\": \"yoqxalilvvkttsltdiypd\",
\"special_requests\": \"assumenda\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/hotel-guests/nobis"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "tebrmiazmccviajgzeje",
"email": "melba19@example.org",
"phone": "hannd",
"company": "khoofezljjlvjybezsucyqzga",
"address": "ev",
"nationality": "yfpbwbg",
"id_document_type": "Driver's License",
"id_document_number": "skdwhkkn",
"preferred_language": "yoqxalilvvkttsltdiypd",
"special_requests": "assumenda"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update a guest.
requires authentication
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/hotel-guests/impedit" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"fmulxgtd\",
\"email\": \"jhyatt@example.net\",
\"phone\": \"chvuysltqqqnw\",
\"company\": \"kxgujll\",
\"address\": \"ow\",
\"nationality\": \"ynbtqeevzorbssryldmxye\",
\"id_document_type\": \"Passport\",
\"id_document_number\": \"uuncuimpdvglbiqidv\",
\"preferred_language\": \"qouvrmuuhsuhsbswfdun\",
\"special_requests\": \"eveniet\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/hotel-guests/impedit"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "fmulxgtd",
"email": "jhyatt@example.net",
"phone": "chvuysltqqqnw",
"company": "kxgujll",
"address": "ow",
"nationality": "ynbtqeevzorbssryldmxye",
"id_document_type": "Passport",
"id_document_number": "uuncuimpdvglbiqidv",
"preferred_language": "qouvrmuuhsuhsbswfdun",
"special_requests": "eveniet"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete a guest.
requires authentication
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/hotel-guests/et" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/hotel-guests/et"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/hotel-bookings
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/hotel-bookings" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/hotel-bookings"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/hotel-bookings
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/hotel-bookings" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"guest_id\": \"2d11745a-5894-360f-8693-24bef689b2f1\",
\"check_in_date\": \"2025-03-11 10:36\",
\"check_out_date\": \"2092-11-09\",
\"actual_check_out_date\": \"2111-12-11\",
\"num_of_adults\": 20,
\"num_of_children\": 8,
\"total_amount\": 68,
\"payment_status\": \"ut\",
\"status\": \"ut\",
\"promo_code_id\": \"bc662e56-fc92-3ba4-a4ea-cfde49a869fc\",
\"early_check_in_requested\": true,
\"late_check_out_requested\": false,
\"early_check_out\": false,
\"early_check_out_reason\": \"aliquam\",
\"booking_rooms\": [
\"vel\"
]
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/hotel-bookings"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"guest_id": "2d11745a-5894-360f-8693-24bef689b2f1",
"check_in_date": "2025-03-11 10:36",
"check_out_date": "2092-11-09",
"actual_check_out_date": "2111-12-11",
"num_of_adults": 20,
"num_of_children": 8,
"total_amount": 68,
"payment_status": "ut",
"status": "ut",
"promo_code_id": "bc662e56-fc92-3ba4-a4ea-cfde49a869fc",
"early_check_in_requested": true,
"late_check_out_requested": false,
"early_check_out": false,
"early_check_out_reason": "aliquam",
"booking_rooms": [
"vel"
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/hotel-bookings/{id}
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/hotel-bookings/et" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/hotel-bookings/et"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PUT api/hotel-bookings/{id}
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/hotel-bookings/perferendis" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"guest_id\": \"629f5b0e-4d2f-3d17-aa44-f9b5f64e6515\",
\"check_in_date\": \"2025-03-11 10:36\",
\"check_out_date\": \"2036-04-19\",
\"actual_check_out_date\": \"2088-08-10\",
\"num_of_adults\": 29,
\"num_of_children\": 6,
\"total_amount\": 51,
\"payment_status\": \"debitis\",
\"status\": \"soluta\",
\"promo_code_id\": \"08ddc921-e815-398c-9ef0-5930fe7b2a2a\",
\"early_check_in_requested\": true,
\"late_check_out_requested\": false,
\"early_check_out\": true,
\"early_check_out_reason\": \"voluptatem\",
\"booking_rooms\": [
\"dolores\"
]
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/hotel-bookings/perferendis"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"guest_id": "629f5b0e-4d2f-3d17-aa44-f9b5f64e6515",
"check_in_date": "2025-03-11 10:36",
"check_out_date": "2036-04-19",
"actual_check_out_date": "2088-08-10",
"num_of_adults": 29,
"num_of_children": 6,
"total_amount": 51,
"payment_status": "debitis",
"status": "soluta",
"promo_code_id": "08ddc921-e815-398c-9ef0-5930fe7b2a2a",
"early_check_in_requested": true,
"late_check_out_requested": false,
"early_check_out": true,
"early_check_out_reason": "voluptatem",
"booking_rooms": [
"dolores"
]
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/hotel-bookings/{id}
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/hotel-bookings/rem" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"guest_id\": \"e5473457-8f0a-3f30-a742-cbb4d4e9339d\",
\"check_in_date\": \"2025-03-11 10:36\",
\"check_out_date\": \"2056-01-28\",
\"actual_check_out_date\": \"2096-05-28\",
\"num_of_adults\": 56,
\"num_of_children\": 58,
\"total_amount\": 67,
\"payment_status\": \"placeat\",
\"status\": \"pariatur\",
\"promo_code_id\": \"773b36c7-0468-3c21-9cbb-a886c318ecfa\",
\"early_check_in_requested\": true,
\"late_check_out_requested\": true,
\"early_check_out\": false,
\"early_check_out_reason\": \"harum\",
\"booking_rooms\": [
\"qui\"
]
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/hotel-bookings/rem"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"guest_id": "e5473457-8f0a-3f30-a742-cbb4d4e9339d",
"check_in_date": "2025-03-11 10:36",
"check_out_date": "2056-01-28",
"actual_check_out_date": "2096-05-28",
"num_of_adults": 56,
"num_of_children": 58,
"total_amount": 67,
"payment_status": "placeat",
"status": "pariatur",
"promo_code_id": "773b36c7-0468-3c21-9cbb-a886c318ecfa",
"early_check_in_requested": true,
"late_check_out_requested": true,
"early_check_out": false,
"early_check_out_reason": "harum",
"booking_rooms": [
"qui"
]
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/hotel-bookings/{id}
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/hotel-bookings/quidem" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/hotel-bookings/quidem"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/company-requests" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/company-requests"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/global-messages
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/global-messages" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/global-messages"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/global-messages
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/global-messages" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"subject\": \"natus\",
\"message\": \"reprehenderit\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/global-messages"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"subject": "natus",
"message": "reprehenderit"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/global-messages/{globalMessage_id}
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/global-messages/18" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/global-messages/18"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PUT api/global-messages/{globalMessage_id}
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/global-messages/14" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"subject\": \"veniam\",
\"message\": \"natus\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/global-messages/14"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"subject": "veniam",
"message": "natus"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/global-messages/{globalMessage_id}
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/global-messages/19" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/global-messages/19"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PUT api/global-messages/restore/{id}
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/global-messages/restore/maiores" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/global-messages/restore/maiores"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/global-messages/force-delete/{id}
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/global-messages/force-delete/ex" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/global-messages/force-delete/ex"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/global-messages/trashed
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/global-messages/trashed" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/global-messages/trashed"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/contact-us
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/contact-us" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"byqetfiieyimbbnqcxdevlm\",
\"email\": \"ygoodwin@example.com\",
\"subject\": \"tpakngqksizsnognewqzfauxe\",
\"message\": \"edzhwyklhzvtzmzngdubnoejvrotksldpmppriazgoioqirpdhxcdoqgpnxziagjobhjkqaotteyil\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/contact-us"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "byqetfiieyimbbnqcxdevlm",
"email": "ygoodwin@example.com",
"subject": "tpakngqksizsnognewqzfauxe",
"message": "edzhwyklhzvtzmzngdubnoejvrotksldpmppriazgoioqirpdhxcdoqgpnxziagjobhjkqaotteyil"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/{any}
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/&0Mz(&i" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/&0Mz(&i"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (404):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Resource not found"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Invoice Headers
invoice headers
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/sale-invoices" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/sale-invoices"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/sale-invoices" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"customer_id\": \"dignissimos\",
\"brought_by\": \"optio\",
\"description\": \"Nobis voluptatibus fugit impedit deleniti harum.\",
\"total\": 485.78,
\"discount\": 7757.4321,
\"due_date\": \"2025-03-11T10:35:54\",
\"tax\": 1,
\"items\": [
\"sed\"
],
\"guest_id\": \"a79faf6f-ad30-38af-b894-5b1ef4e2204b\",
\"hotel_booking_id\": \"dfa2c215-2e0c-3e69-bb27-e0c2cdf68317\",
\"booking_room_id\": \"4d29299c-fcbe-3b7d-9333-14ee3a838b6c\",
\"invoice_type\": \"voluptas\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/sale-invoices"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"customer_id": "dignissimos",
"brought_by": "optio",
"description": "Nobis voluptatibus fugit impedit deleniti harum.",
"total": 485.78,
"discount": 7757.4321,
"due_date": "2025-03-11T10:35:54",
"tax": 1,
"items": [
"sed"
],
"guest_id": "a79faf6f-ad30-38af-b894-5b1ef4e2204b",
"hotel_booking_id": "dfa2c215-2e0c-3e69-bb27-e0c2cdf68317",
"booking_room_id": "4d29299c-fcbe-3b7d-9333-14ee3a838b6c",
"invoice_type": "voluptas"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/sale-invoices/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/sale-invoices/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/sale-invoices/esse" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"description\": \"In voluptatem tempore exercitationem rerum iure rerum ad.\",
\"total\": 23525060.2936,
\"discount\": 666432324.46835,
\"due_date\": \"2025-03-11T10:35:54\",
\"tax\": 24,
\"items\": [
\"et\"
],
\"guest_id\": \"e29e7df1-11ec-39fc-9a4c-1d5e39b0daff\",
\"hotel_booking_id\": \"926d1e14-5e98-375e-85f1-05d5246812a3\",
\"booking_room_id\": \"556fb3e7-1e81-3996-b35a-4a66d0f13df2\",
\"invoice_type\": \"aut\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/sale-invoices/esse"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"description": "In voluptatem tempore exercitationem rerum iure rerum ad.",
"total": 23525060.2936,
"discount": 666432324.46835,
"due_date": "2025-03-11T10:35:54",
"tax": 24,
"items": [
"et"
],
"guest_id": "e29e7df1-11ec-39fc-9a4c-1d5e39b0daff",
"hotel_booking_id": "926d1e14-5e98-375e-85f1-05d5246812a3",
"booking_room_id": "556fb3e7-1e81-3996-b35a-4a66d0f13df2",
"invoice_type": "aut"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/sale-invoices/sit" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"description\": \"Vel doloribus omnis est sit corrupti libero vitae.\",
\"total\": 660940412.1123257,
\"discount\": 12,
\"due_date\": \"2025-03-11T10:35:54\",
\"tax\": 5,
\"items\": [
\"iure\"
],
\"guest_id\": \"1f18204e-ca48-3fc9-8424-64e7c0bc552e\",
\"hotel_booking_id\": \"c0953744-302f-3dfe-8ee2-66830ab81b39\",
\"booking_room_id\": \"460bc380-d3d7-32f3-90cb-bf772a305ada\",
\"invoice_type\": \"hic\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/sale-invoices/sit"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"description": "Vel doloribus omnis est sit corrupti libero vitae.",
"total": 660940412.1123257,
"discount": 12,
"due_date": "2025-03-11T10:35:54",
"tax": 5,
"items": [
"iure"
],
"guest_id": "1f18204e-ca48-3fc9-8424-64e7c0bc552e",
"hotel_booking_id": "c0953744-302f-3dfe-8ee2-66830ab81b39",
"booking_room_id": "460bc380-d3d7-32f3-90cb-bf772a305ada",
"invoice_type": "hic"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/sale-invoices/est" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/sale-invoices/est"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/sale-invoices/attach-payments
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/sale-invoices/attach-payments" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/sale-invoices/attach-payments"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/sale-invoices/convert-order-to-invoice
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/sale-invoices/convert-order-to-invoice" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/sale-invoices/convert-order-to-invoice"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/invoice-headers" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/invoice-headers"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/invoice-headers" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"customer_id\": \"et\",
\"brought_by\": \"provident\",
\"description\": \"Et non esse ut quaerat magnam fuga enim.\",
\"total\": 555.53,
\"discount\": 1.9658,
\"due_date\": \"2025-03-11T10:35:54\",
\"tax\": 22,
\"items\": [
\"qui\"
],
\"guest_id\": \"47cd4d82-9d5b-3883-980a-aa60e2016a35\",
\"hotel_booking_id\": \"edac15e5-2081-36bf-833f-34e82f302433\",
\"booking_room_id\": \"3b5208a1-1be2-342c-b219-16c855ecd733\",
\"invoice_type\": \"unde\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/invoice-headers"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"customer_id": "et",
"brought_by": "provident",
"description": "Et non esse ut quaerat magnam fuga enim.",
"total": 555.53,
"discount": 1.9658,
"due_date": "2025-03-11T10:35:54",
"tax": 22,
"items": [
"qui"
],
"guest_id": "47cd4d82-9d5b-3883-980a-aa60e2016a35",
"hotel_booking_id": "edac15e5-2081-36bf-833f-34e82f302433",
"booking_room_id": "3b5208a1-1be2-342c-b219-16c855ecd733",
"invoice_type": "unde"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/invoice-headers/occaecati" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/invoice-headers/occaecati"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/invoice-headers/sunt" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"description\": \"Qui aut ipsa quod repellendus est ut.\",
\"total\": 17.716524415,
\"discount\": 0.44541417,
\"due_date\": \"2025-03-11T10:35:54\",
\"tax\": 16,
\"items\": [
\"voluptas\"
],
\"guest_id\": \"7482ea67-dc9b-3746-a25d-0e1f1cbfd2a0\",
\"hotel_booking_id\": \"aa959569-1260-33b1-a22b-8187d4132a50\",
\"booking_room_id\": \"611ba3e5-6273-3f14-a560-b7fbe26169bd\",
\"invoice_type\": \"dolore\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/invoice-headers/sunt"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"description": "Qui aut ipsa quod repellendus est ut.",
"total": 17.716524415,
"discount": 0.44541417,
"due_date": "2025-03-11T10:35:54",
"tax": 16,
"items": [
"voluptas"
],
"guest_id": "7482ea67-dc9b-3746-a25d-0e1f1cbfd2a0",
"hotel_booking_id": "aa959569-1260-33b1-a22b-8187d4132a50",
"booking_room_id": "611ba3e5-6273-3f14-a560-b7fbe26169bd",
"invoice_type": "dolore"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/invoice-headers/repudiandae" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"description\": \"Est est quis qui ut sit perferendis illo.\",
\"total\": 16583.022449,
\"discount\": 17,
\"due_date\": \"2025-03-11T10:35:54\",
\"tax\": 14,
\"items\": [
\"sint\"
],
\"guest_id\": \"0063b699-9b9e-35ca-bba2-c1aff8527e4f\",
\"hotel_booking_id\": \"db54e2b2-f4d7-36ff-aac8-38f0b68a098f\",
\"booking_room_id\": \"49630ec3-1fcb-32ca-a056-c50234256bfb\",
\"invoice_type\": \"autem\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/invoice-headers/repudiandae"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"description": "Est est quis qui ut sit perferendis illo.",
"total": 16583.022449,
"discount": 17,
"due_date": "2025-03-11T10:35:54",
"tax": 14,
"items": [
"sint"
],
"guest_id": "0063b699-9b9e-35ca-bba2-c1aff8527e4f",
"hotel_booking_id": "db54e2b2-f4d7-36ff-aac8-38f0b68a098f",
"booking_room_id": "49630ec3-1fcb-32ca-a056-c50234256bfb",
"invoice_type": "autem"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/invoice-headers/culpa" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/invoice-headers/culpa"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/invoice-headers/attach-payments
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/invoice-headers/attach-payments" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/invoice-headers/attach-payments"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/invoice-headers/convert-order-to-invoice
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/invoice-headers/convert-order-to-invoice" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/invoice-headers/convert-order-to-invoice"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/pos/summary
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/pos/summary" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/pos/summary"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/pos
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/pos" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"items\": [
\"animi\"
],
\"tax\": 1236753.55,
\"collected_status\": \"placeat\",
\"discount_amount\": 3919970,
\"payments\": [
\"quaerat\"
],
\"guest_id\": \"ac3f7115-51ba-3ac7-b63c-4069bf9a0e31\",
\"hotel_booking_id\": \"37b22377-3906-3ef7-a88a-5f8d1fafb8e2\",
\"booking_room_id\": \"8a52d3ae-7801-3fd4-837f-6ac15f20d960\",
\"invoice_type\": \"quod\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/pos"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"items": [
"animi"
],
"tax": 1236753.55,
"collected_status": "placeat",
"discount_amount": 3919970,
"payments": [
"quaerat"
],
"guest_id": "ac3f7115-51ba-3ac7-b63c-4069bf9a0e31",
"hotel_booking_id": "37b22377-3906-3ef7-a88a-5f8d1fafb8e2",
"booking_room_id": "8a52d3ae-7801-3fd4-837f-6ac15f20d960",
"invoice_type": "quod"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/pos/summary/{id}
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/pos/summary/animi" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/pos/summary/animi"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PUT api/sale_orders/{sale_order}
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/sale_orders/sit" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/sale_orders/sit"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/sale_orders/{sale_order}
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/sale_orders/sit" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/sale_orders/sit"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PATCH",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Invoice Management
DELETE api/supplier-invoices/{supplierInvoice_id}
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/supplier-invoices/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/supplier-invoices/16"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Example response (200):
{
"success": true,
"message": "supplier invoice deleted successfully"
}
Example response (500):
{
"error": "Failed to delete supplier invoice"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/supplier-invoices/{InvoiceId}/payments
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/supplier-invoices/20/payments" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/supplier-invoices/20/payments"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": [
{
"id": 1,
"supplier_id": 2,
"document_type": "invoice", // Example document type
"payment_type": "bank_transfer", // Example payment type
"payment_reference": "ABC123", // Example payment reference
"payment_amount_total": 100.00,
"withholding_tax_rate": 0.1, // Example withholding tax rate (optional)
"withholding_tax_amount": 10.00, // Example withholding tax amount (optional)
}
]
}
Example response (404):
{
"error": "Supplier invoice not found"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Product Services
Display a listing of the resource.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/product-services" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/product-services"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/product-services" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"price\": \"omnis\",
\"description\": \"aut\",
\"name\": \"modi\",
\"charge_type\": \"non\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/product-services"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"price": "omnis",
"description": "aut",
"name": "modi",
"charge_type": "non"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/product-services/eos" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/product-services/eos"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
requires authentication
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/product-services/et" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/product-services/et"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
requires authentication
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/product-services/iusto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/product-services/iusto"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Search for resource
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/product-services/search/corporis" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/product-services/search/corporis"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Projects
Show all projects
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/projects" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/projects"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/projects" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"quisquam\",
\"product_service_id\": 15,
\"customer_id\": 14,
\"project_type\": \"officia\",
\"start_date\": \"cupiditate\",
\"expected_end_date\": \"est\",
\"priority\": \"medium\",
\"description\": \"Corrupti molestiae nihil nesciunt harum cumque ullam.\",
\"manager_id\": 17,
\"status\": \"facilis\",
\"completed_date\": \"aut\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/projects"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "quisquam",
"product_service_id": 15,
"customer_id": 14,
"project_type": "officia",
"start_date": "cupiditate",
"expected_end_date": "est",
"priority": "medium",
"description": "Corrupti molestiae nihil nesciunt harum cumque ullam.",
"manager_id": 17,
"status": "facilis",
"completed_date": "aut"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"name": "Project Name",
"product_service_id": 1,
"customer_id": 1,
"manager_id": 1,
"status": "ongoing",
"start_date": "2024-04-02",
"expected_end_date": "2024-05-01",
"completed_date": null,
"created_at": "2024-04-02T12:00:00.000000Z",
"updated_at": "2024-04-02T12:00:00.000000Z"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display Specified Project
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/projects/delectus" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/projects/delectus"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"name": "Project Name",
"product_service_id": 1,
"customer_id": 1,
"manager_id": 1,
"status": "ongoing",
"start_date": "2024-04-02",
"expected_end_date": "2024-05-01",
"completed_date": null,
"created_at": "2024-04-02T12:00:00.000000Z",
"updated_at": "2024-04-02T12:00:00.000000Z"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified Project in storage.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/projects/aut" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"wzzhabqfaahvuikak\",
\"product_service_id\": 9,
\"customer_id\": 1,
\"manager_id\": 15,
\"start_date\": \"2025-03-11T10:35:53\",
\"expected_end_date\": \"2083-11-13\",
\"priority\": \"high\",
\"description\": \"Voluptas nihil velit quibusdam eius aliquid provident libero.\",
\"budget\": 0,
\"actual_cost\": 82
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/projects/aut"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "wzzhabqfaahvuikak",
"product_service_id": 9,
"customer_id": 1,
"manager_id": 15,
"start_date": "2025-03-11T10:35:53",
"expected_end_date": "2083-11-13",
"priority": "high",
"description": "Voluptas nihil velit quibusdam eius aliquid provident libero.",
"budget": 0,
"actual_cost": 82
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store add a task to project
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/projects/add_task_to_project/qui" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"column_id\": \"quis\",
\"name\": \"wldmroyhimpvrzr\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/projects/add_task_to_project/qui"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"column_id": "quis",
"name": "wldmroyhimpvrzr"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
List all tasks for the project
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/projects/list_all_tasks/reprehenderit" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/projects/list_all_tasks/reprehenderit"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (500):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "SQLSTATE[3D000]: Invalid catalog name: 1046 No database selected (Connection: tenant, SQL: select * from `projects` where `id` = reprehenderit and `projects`.`deleted_at` is null limit 1)",
"exception": "Illuminate\\Database\\QueryException",
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Connection.php",
"line": 813,
"trace": [
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Connection.php",
"line": 767,
"function": "runQueryCallback",
"class": "Illuminate\\Database\\Connection",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Connection.php",
"line": 398,
"function": "run",
"class": "Illuminate\\Database\\Connection",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Query\\Builder.php",
"line": 2898,
"function": "select",
"class": "Illuminate\\Database\\Connection",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Query\\Builder.php",
"line": 2883,
"function": "runSelect",
"class": "Illuminate\\Database\\Query\\Builder",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Query\\Builder.php",
"line": 3467,
"function": "Illuminate\\Database\\Query\\{closure}",
"class": "Illuminate\\Database\\Query\\Builder",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Query\\Builder.php",
"line": 2882,
"function": "onceWithColumns",
"class": "Illuminate\\Database\\Query\\Builder",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Eloquent\\Builder.php",
"line": 738,
"function": "get",
"class": "Illuminate\\Database\\Query\\Builder",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Eloquent\\Builder.php",
"line": 722,
"function": "getModels",
"class": "Illuminate\\Database\\Eloquent\\Builder",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Concerns\\BuildsQueries.php",
"line": 333,
"function": "get",
"class": "Illuminate\\Database\\Eloquent\\Builder",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\app\\Http\\Controllers\\Api\\ProjectController.php",
"line": 347,
"function": "first",
"class": "Illuminate\\Database\\Eloquent\\Builder",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\ControllerDispatcher.php",
"line": 46,
"function": "list_all_tasks",
"class": "App\\Http\\Controllers\\Api\\ProjectController",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Route.php",
"line": 260,
"function": "dispatch",
"class": "Illuminate\\Routing\\ControllerDispatcher",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Route.php",
"line": 206,
"function": "runController",
"class": "Illuminate\\Routing\\Route",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 806,
"function": "run",
"class": "Illuminate\\Routing\\Route",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 144,
"function": "Illuminate\\Routing\\{closure}",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Middleware\\SubstituteBindings.php",
"line": 50,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Routing\\Middleware\\SubstituteBindings",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 119,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 805,
"function": "then",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 784,
"function": "runRouteWithinStack",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 748,
"function": "runRoute",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
"line": 737,
"function": "dispatchToRoute",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
"line": 200,
"function": "dispatch",
"class": "Illuminate\\Routing\\Router",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 144,
"function": "Illuminate\\Foundation\\Http\\{closure}",
"class": "Illuminate\\Foundation\\Http\\Kernel",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest.php",
"line": 21,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull.php",
"line": 31,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest.php",
"line": 21,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\TrimStrings.php",
"line": 50,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\TrimStrings",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Middleware\\ValidatePostSize.php",
"line": 27,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Http\\Middleware\\ValidatePostSize",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance.php",
"line": 110,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Middleware\\HandleCors.php",
"line": 62,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Http\\Middleware\\HandleCors",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Middleware\\TrustProxies.php",
"line": 57,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 183,
"function": "handle",
"class": "Illuminate\\Http\\Middleware\\TrustProxies",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
"line": 119,
"function": "Illuminate\\Pipeline\\{closure}",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
"line": 175,
"function": "then",
"class": "Illuminate\\Pipeline\\Pipeline",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
"line": 144,
"function": "sendRequestThroughRouter",
"class": "Illuminate\\Foundation\\Http\\Kernel",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 300,
"function": "handle",
"class": "Illuminate\\Foundation\\Http\\Kernel",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 288,
"function": "callLaravelOrLumenRoute",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 91,
"function": "makeApiCall",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 44,
"function": "makeResponseCall",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
"line": 35,
"function": "makeResponseCallIfConditionsPass",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Extractor.php",
"line": 236,
"function": "__invoke",
"class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Extractor.php",
"line": 163,
"function": "iterateThroughStrategies",
"class": "Knuckles\\Scribe\\Extracting\\Extractor",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Extractor.php",
"line": 95,
"function": "fetchResponses",
"class": "Knuckles\\Scribe\\Extracting\\Extractor",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\GroupedEndpoints\\GroupedEndpointsFromApp.php",
"line": 125,
"function": "processRoute",
"class": "Knuckles\\Scribe\\Extracting\\Extractor",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\GroupedEndpoints\\GroupedEndpointsFromApp.php",
"line": 72,
"function": "extractEndpointsInfoFromLaravelApp",
"class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\GroupedEndpoints\\GroupedEndpointsFromApp.php",
"line": 50,
"function": "extractEndpointsInfoAndWriteToDisk",
"class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\knuckleswtf\\scribe\\src\\Commands\\GenerateDocumentation.php",
"line": 53,
"function": "get",
"class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
"line": 36,
"function": "handle",
"class": "Knuckles\\Scribe\\Commands\\GenerateDocumentation",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\Util.php",
"line": 41,
"function": "Illuminate\\Container\\{closure}",
"class": "Illuminate\\Container\\BoundMethod",
"type": "::"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
"line": 93,
"function": "unwrapIfClosure",
"class": "Illuminate\\Container\\Util",
"type": "::"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
"line": 35,
"function": "callBoundMethod",
"class": "Illuminate\\Container\\BoundMethod",
"type": "::"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\Container.php",
"line": 662,
"function": "call",
"class": "Illuminate\\Container\\BoundMethod",
"type": "::"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Console\\Command.php",
"line": 212,
"function": "call",
"class": "Illuminate\\Container\\Container",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\symfony\\console\\Command\\Command.php",
"line": 279,
"function": "execute",
"class": "Illuminate\\Console\\Command",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Console\\Command.php",
"line": 181,
"function": "run",
"class": "Symfony\\Component\\Console\\Command\\Command",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\symfony\\console\\Application.php",
"line": 1049,
"function": "run",
"class": "Illuminate\\Console\\Command",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\symfony\\console\\Application.php",
"line": 318,
"function": "doRunCommand",
"class": "Symfony\\Component\\Console\\Application",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\symfony\\console\\Application.php",
"line": 169,
"function": "doRun",
"class": "Symfony\\Component\\Console\\Application",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Console\\Kernel.php",
"line": 196,
"function": "run",
"class": "Symfony\\Component\\Console\\Application",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Application.php",
"line": 1183,
"function": "handle",
"class": "Illuminate\\Foundation\\Console\\Kernel",
"type": "->"
},
{
"file": "C:\\Users\\Celestial\\Downloads\\Digimax\\Feexid\\Feexid Backend\\sycammore\\artisan",
"line": 13,
"function": "handleCommand",
"class": "Illuminate\\Foundation\\Application",
"type": "->"
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Quotations
Display a listing of the resource.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/quotations" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/quotations"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/quotations" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"customer_id\": \"dolores\",
\"brought_by\": \"molestias\",
\"description\": \"Et natus et qui est.\",
\"tax_percentage\": 33,
\"due_date\": \"2016-02-19\",
\"comment\": \"sint\",
\"items\": [
\"nisi\"
]
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/quotations"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"customer_id": "dolores",
"brought_by": "molestias",
"description": "Et natus et qui est.",
"tax_percentage": 33,
"due_date": "2016-02-19",
"comment": "sint",
"items": [
"nisi"
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/quotations/sint" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/quotations/sint"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
requires authentication
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/quotations/quidem" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"date\": \"2025-03-11\",
\"due_date\": \"2025-03-11\",
\"status\": \"omnis\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/quotations/quidem"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"date": "2025-03-11",
"due_date": "2025-03-11",
"status": "omnis"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
requires authentication
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/quotations/rerum" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/quotations/rerum"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/quotations/dashboard
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/quotations/dashboard" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/quotations/dashboard"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/quotations/update-status
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/quotations/update-status" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/quotations/update-status"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/quotations/process
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/quotations/process" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/quotations/process"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Sales Invoice Detail
Display a listing of the resource.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/sales-invoice-details" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/sales-invoice-details"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/sales-invoice-details" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"document_type\": \"dolorem\",
\"code\": \"tempora\",
\"description\": \"eos\",
\"quantity\": \"dolore\",
\"unit_price\": \"eligendi\",
\"net_amount\": \"facilis\",
\"invoice_header_id\": \"recusandae\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/sales-invoice-details"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"document_type": "dolorem",
"code": "tempora",
"description": "eos",
"quantity": "dolore",
"unit_price": "eligendi",
"net_amount": "facilis",
"invoice_header_id": "recusandae"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/sales-invoice-details/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/sales-invoice-details/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
requires authentication
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/sales-invoice-details/libero" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
const url = new URL(
"https://feexid.development.medixmw.com/api/sales-invoice-details/libero"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
requires authentication
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/sales-invoice-details/distinctio" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/sales-invoice-details/distinctio"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Sales Invoice Payments
Display a listing of the resource.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/sales-invoice-payments" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/sales-invoice-payments"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/sales-invoice-payments" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"customer_id\": \"exercitationem\",
\"invoice_header_id\": \"omnis\",
\"payment_amount_total\": \"iste\",
\"payment_reference\": \"molestiae\",
\"payment_type\": \"quasi\",
\"document_type\": \"aut\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/sales-invoice-payments"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"customer_id": "exercitationem",
"invoice_header_id": "omnis",
"payment_amount_total": "iste",
"payment_reference": "molestiae",
"payment_type": "quasi",
"document_type": "aut"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/sales-invoice-payments/maiores" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/sales-invoice-payments/maiores"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
requires authentication
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/sales-invoice-payments/mollitia" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
const url = new URL(
"https://feexid.development.medixmw.com/api/sales-invoice-payments/mollitia"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
requires authentication
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/sales-invoice-payments/eligendi" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/sales-invoice-payments/eligendi"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Sales Lead
GET api/sales-leads
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/sales-leads" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/sales-leads"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a SalesLead
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/sales-leads" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"lead_id\": \"itaque\",
\"customer_id\": \"aut\",
\"email\": \"angelo28@example.com\",
\"phone\": \"labore\",
\"project_id\": \"quo\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/sales-leads"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"lead_id": "itaque",
"customer_id": "aut",
"email": "angelo28@example.com",
"phone": "labore",
"project_id": "quo"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified Sale Resource.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/sales-leads/ut" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/sales-leads/ut"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
requires authentication
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/sales-leads/ea" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"status\": \"lost\",
\"name\": \"non\",
\"start_date\": \"2025-03-11\",
\"expected_end_date\": \"2038-07-26\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/sales-leads/ea"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"status": "lost",
"name": "non",
"start_date": "2025-03-11",
"expected_end_date": "2038-07-26"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
requires authentication
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/sales-leads/animi" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/sales-leads/animi"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/sales-leads/updates/{id}
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/sales-leads/updates/ut" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/sales-leads/updates/ut"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Supplier Invoice Management
GET api/supplier-invoices
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/supplier-invoices?page=ut" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/supplier-invoices"
);
const params = {
"page": "ut",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": [
{
"id": 1,
"supplier_id": 2,
"invoice_number": "INV-2023-001",
// ... other invoice details
},
// ... Up to 14 more invoice details (depending on total invoices)
],
"links": {
"first": "http://your-api-domain/api/supplier-invoices?page=1",
"last": "http://your-api-domain/api/supplier-invoices?page=n" (where n is the last page number),
"prev": "http://your-api-domain/api/supplier-invoices?page=x" (previous page link if available),
"next": "http://your-api-domain/api/supplier-invoices?page=y" (next page link if available)
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": n (total number of pages),
"per_page": 15,
"total": x (total number of invoices)
}
}
Example response (400):
{
"error": "Invalid page number" (if provided page number is less than 1)
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/supplier-invoices
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/supplier-invoices" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"supplier_id\": \"et\",
\"invoice_number\": \"deleniti\",
\"due_date\": \"dolores\",
\"reference\": \"eius\",
\"invoice_value\": \"amet\",
\"discount\": 67,
\"invoice_status\": \"beatae\",
\"currency\": \"quis\",
\"exchange_rate\": \"aut\",
\"first_tax_code\": \"molestiae\",
\"with_tax_value\": \"aspernatur\",
\"with_tax_rate\": \"quam\",
\"currency_value\": 83,
\"local_value\": 14,
\"amount_paid\": 71,
\"items\": \"pzqekj\",
\"supplier_invoice_payment_ids\": \"id\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/supplier-invoices"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"supplier_id": "et",
"invoice_number": "deleniti",
"due_date": "dolores",
"reference": "eius",
"invoice_value": "amet",
"discount": 67,
"invoice_status": "beatae",
"currency": "quis",
"exchange_rate": "aut",
"first_tax_code": "molestiae",
"with_tax_value": "aspernatur",
"with_tax_rate": "quam",
"currency_value": 83,
"local_value": 14,
"amount_paid": 71,
"items": "pzqekj",
"supplier_invoice_payment_ids": "id"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (201):
{
"data": {
"id": 1,
"supplier_id": 2,
"invoice_number": "INV-2023-001",
// ... other invoice details
}
}
Example response (400):
{
"error": "Validation error messages..."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/supplier-invoices/{supplierInvoice_id}
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/supplier-invoices/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/supplier-invoices/16"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"supplier_id": 2,
"invoice_number": "INV-2023-001",
// ... other invoice details
}
}
Example response (404):
{
"error": "Supplier invoice not found"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PUT api/supplier-invoices/{supplierInvoice_id}
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/supplier-invoices/12" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"supplier_id\": \"cum\",
\"invoice_number\": \"cupiditate\",
\"due_date\": \"minus\",
\"reference\": \"enim\",
\"invoice_value\": \"in\",
\"discount\": 36,
\"invoice_status\": \"ullam\",
\"currency\": \"illum\",
\"exchange_rate\": \"qui\",
\"first_tax_code\": \"consequatur\",
\"with_tax_value\": \"aut\",
\"with_tax_rate\": \"magnam\",
\"currency_value\": 46,
\"local_value\": 42,
\"amount_paid\": 20,
\"items\": \"jijycflslnouenmdzpylzfmbkabzfftmwdxaigfpzmpvswzuhzjyoepjqpmyqfbnduszgwldaoeayo\",
\"supplier_invoice_payment_ids\": \"distinctio\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/supplier-invoices/12"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"supplier_id": "cum",
"invoice_number": "cupiditate",
"due_date": "minus",
"reference": "enim",
"invoice_value": "in",
"discount": 36,
"invoice_status": "ullam",
"currency": "illum",
"exchange_rate": "qui",
"first_tax_code": "consequatur",
"with_tax_value": "aut",
"with_tax_rate": "magnam",
"currency_value": 46,
"local_value": 42,
"amount_paid": 20,
"items": "jijycflslnouenmdzpylzfmbkabzfftmwdxaigfpzmpvswzuhzjyoepjqpmyqfbnduszgwldaoeayo",
"supplier_invoice_payment_ids": "distinctio"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"supplier_id": 2,
"invoice_number": "INV-2023-001",
// ... other invoice details (updated)
}
}
Example response (400):
{
"error": "Validation error messages..."
}
Example response (404):
{
"error": "Supplier invoice not found"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/supplier-invoices/{supplierInvoice_id}
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/supplier-invoices/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"supplier_id\": \"consequatur\",
\"invoice_number\": \"iste\",
\"due_date\": \"dolorum\",
\"reference\": \"saepe\",
\"invoice_value\": \"qui\",
\"discount\": 77,
\"invoice_status\": \"enim\",
\"currency\": \"et\",
\"exchange_rate\": \"aliquid\",
\"first_tax_code\": \"itaque\",
\"with_tax_value\": \"rerum\",
\"with_tax_rate\": \"sapiente\",
\"currency_value\": 1,
\"local_value\": 13,
\"amount_paid\": 78,
\"items\": \"avirlpvnotkbkxmrapjirusqelzzubbbhmjsdighbxb\",
\"supplier_invoice_payment_ids\": \"eveniet\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/supplier-invoices/1"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"supplier_id": "consequatur",
"invoice_number": "iste",
"due_date": "dolorum",
"reference": "saepe",
"invoice_value": "qui",
"discount": 77,
"invoice_status": "enim",
"currency": "et",
"exchange_rate": "aliquid",
"first_tax_code": "itaque",
"with_tax_value": "rerum",
"with_tax_rate": "sapiente",
"currency_value": 1,
"local_value": 13,
"amount_paid": 78,
"items": "avirlpvnotkbkxmrapjirusqelzzubbbhmjsdighbxb",
"supplier_invoice_payment_ids": "eveniet"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"supplier_id": 2,
"invoice_number": "INV-2023-001",
// ... other invoice details (updated)
}
}
Example response (400):
{
"error": "Validation error messages..."
}
Example response (404):
{
"error": "Supplier invoice not found"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/supplier-invoices/{supplierInvoice_id}/attach-payments
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/supplier-invoices/12/attach-payments" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"supplier_id\": \"explicabo\",
\"invoice_number\": \"quis\",
\"due_date\": \"2038-06-16\",
\"reference\": \"qui\",
\"invoice_value\": 42,
\"discount\": 77,
\"invoice_status\": \"pending\",
\"currency\": \"xq\",
\"exchange_rate\": 24,
\"first_tax_code\": \"adipisci\",
\"with_tax_value\": 12,
\"with_tax_rate\": 23,
\"currency_value\": 46,
\"local_value\": 30,
\"amount_paid\": 55,
\"items\": \"hdbvqtuginqjpqcfwxstacfqnxryrnqtdszr\",
\"supplier_invoice_payment_ids\": \"vel\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/supplier-invoices/12/attach-payments"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"supplier_id": "explicabo",
"invoice_number": "quis",
"due_date": "2038-06-16",
"reference": "qui",
"invoice_value": 42,
"discount": 77,
"invoice_status": "pending",
"currency": "xq",
"exchange_rate": 24,
"first_tax_code": "adipisci",
"with_tax_value": 12,
"with_tax_rate": 23,
"currency_value": 46,
"local_value": 30,
"amount_paid": 55,
"items": "hdbvqtuginqjpqcfwxstacfqnxryrnqtdszr",
"supplier_invoice_payment_ids": "vel"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"supplier_id": 2,
"invoice_number": "INV-2023-001",
// ... other invoice details (including attached payments)
}
}
Example response (400):
{
"error": "No invoice payment IDs provided"
}
Example response (404):
{
"error": "Supplier invoice not found"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/supplier-invoices/{supplierInvoice_id}/payments/{paymentId}
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/supplier-invoices/19/payments/officia" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/supplier-invoices/19/payments/officia"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"supplier_id": 2,
"invoice_number": "INV-2023-001",
// ... other invoice details (excluding detached payment)
}
}
Example response (404):
{
"error": "Payment Not Found"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Supplier Invoice Payment Management
GET api/supplier-invoice-payments
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/supplier-invoice-payments?page=ipsam" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/supplier-invoice-payments"
);
const params = {
"page": "ipsam",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": [
{
"id": 1,
"supplier_id": 2,
"document_type": "invoice", // Example document type
"payment_type": "bank_transfer", // Example payment type
"payment_reference": "ABC123", // Example payment reference
"payment_amount_total": 100.00,
"withholding_tax_rate": 0.1, // Example withholding tax rate (optional)
"withholding_tax_amount": 10.00, // Example withholding tax amount (optional)
// ... other payment details
},
// ... Up to 14 more payment details (depending on total payments)
],
"links": {
"first": "http://your-api-domain/api/supplier-invoice-payments?page=1",
"last": "http://your-api-domain/api/supplier-invoice-payments?page=n" (where n is the last page number),
"prev": "http://your-api-domain/api/supplier-invoice-payments?page=x" (previous page link if available),
"next": "http://your-api-domain/api/supplier-invoice-payments?page=y" (next page link if available)
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": n (total number of pages),
"per_page": 15,
"total": x (total number of payments)
}
}
Example response (400):
{
"error": "Invalid page number" (if provided page number is less than 1)
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/supplier-invoice-payments
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/supplier-invoice-payments" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"supplier_id\": \"ex\",
\"document_type\": \"et\",
\"payment_type\": \"non\",
\"payment_reference\": \"sunt\",
\"payment_amount_total\": 4507931.20136,
\"withholding_tax_rate\": 8399.7,
\"withholding_tax_amount\": 6.4011
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/supplier-invoice-payments"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"supplier_id": "ex",
"document_type": "et",
"payment_type": "non",
"payment_reference": "sunt",
"payment_amount_total": 4507931.20136,
"withholding_tax_rate": 8399.7,
"withholding_tax_amount": 6.4011
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (201):
{
"data": {
"id": 1,
"supplier_id": 2,
"document_type": "invoice",
"payment_type": "bank_transfer",
"payment_reference": "ABC123",
"payment_amount_total": 100.00,
"withholding_tax_rate": 0.1, // Example withholding tax rate (optional)
"withholding_tax_amount": 10.00, // Example withholding tax amount (optional)
// ... other payment details
}
}
Example response (400):
{
"error": "Missing supplier_invoice_ids in request" (if 'supplier_invoice_ids' is missing)
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/supplier-invoice-payments/{supplierInvoicePayment_id}
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/supplier-invoice-payments/10" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/supplier-invoice-payments/10"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"supplier_id": 2,
"document_type": "invoice",
"payment_type": "bank_transfer",
"payment_reference": "ABC123",
"payment_amount_total": 100.00,
"withholding_tax_rate": 0.1, // Example withholding tax rate (optional)
"withholding_tax_amount": 10.00, // Example withholding tax amount (optional)
// ... other payment details
}
}
Example response (404):
{
"error": "Supplier invoice payment not found"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PUT api/supplier-invoice-payments/{supplierInvoicePayment_id}
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/supplier-invoice-payments/11" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"document_type\": \"blanditiis\",
\"payment_type\": \"est\",
\"payment_reference\": \"nostrum\",
\"payment_amount_total\": 154958.346,
\"withholding_tax_rate\": 421,
\"withholding_tax_amount\": 311.020086
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/supplier-invoice-payments/11"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"document_type": "blanditiis",
"payment_type": "est",
"payment_reference": "nostrum",
"payment_amount_total": 154958.346,
"withholding_tax_rate": 421,
"withholding_tax_amount": 311.020086
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"supplier_id": 2,
"document_type": "invoice",
"payment_type": "bank_transfer",
"payment_reference": "ABC123",
"payment_amount_total": 100.00,
"withholding_tax_rate": 0.1, // Example withholding tax rate (optional)
"withholding_tax_amount": 10.00, // Example withholding tax amount (optional)
// ... other payment details
}
}
Example response (404):
{
"error": "Supplier invoice payment not found"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/supplier-invoice-payments/{supplierInvoicePayment_id}
Example request:
curl --request PATCH \
"https://feexid.development.medixmw.com/api/supplier-invoice-payments/12" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"document_type\": \"sit\",
\"payment_type\": \"quo\",
\"payment_reference\": \"vitae\",
\"payment_amount_total\": 628.476,
\"withholding_tax_rate\": 8082459.331,
\"withholding_tax_amount\": 14350.7188045
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/supplier-invoice-payments/12"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"document_type": "sit",
"payment_type": "quo",
"payment_reference": "vitae",
"payment_amount_total": 628.476,
"withholding_tax_rate": 8082459.331,
"withholding_tax_amount": 14350.7188045
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1,
"supplier_id": 2,
"document_type": "invoice",
"payment_type": "bank_transfer",
"payment_reference": "ABC123",
"payment_amount_total": 100.00,
"withholding_tax_rate": 0.1, // Example withholding tax rate (optional)
"withholding_tax_amount": 10.00, // Example withholding tax amount (optional)
// ... other payment details
}
}
Example response (404):
{
"error": "Supplier invoice payment not found"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/supplier-invoice-payments/{supplierInvoicePayment_id}
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/supplier-invoice-payments/8" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/supplier-invoice-payments/8"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Example response (204):
Empty response
Example response (404):
{
"error": "Supplier invoice payment not found"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/supplier-invoice-payments/invoices/{paymentId}/attach-invoice
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/supplier-invoice-payments/invoices/doloremque/attach-invoice" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"document_type\": \"ut\",
\"payment_type\": \"voluptatibus\",
\"payment_reference\": \"reprehenderit\",
\"payment_amount_total\": 2164612.28,
\"withholding_tax_rate\": 1457850,
\"withholding_tax_amount\": 207.9291
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/supplier-invoice-payments/invoices/doloremque/attach-invoice"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"document_type": "ut",
"payment_type": "voluptatibus",
"payment_reference": "reprehenderit",
"payment_amount_total": 2164612.28,
"withholding_tax_rate": 1457850,
"withholding_tax_amount": 207.9291
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1, // ID of the updated supplier invoice payment
"invoices": [ // Array of attached supplier invoice details
// ... details of each attached invoice
]
}
}
Example response (404):
{
"error": "Supplier invoice payment not found"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/supplier-invoice-payments/{paymentId}/invoices/{invoiceId}
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/supplier-invoice-payments/16/invoices/est" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/supplier-invoice-payments/16/invoices/est"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Example response (200):
{
"data": {
"id": 1, // ID of the updated supplier invoice payment
"invoices": [ // Array of remaining attached supplier invoice details (if any)
// ... details of each remaining attached invoice
]
}
}
Example response (404):
{
"error": "Supplier invoice payment not found" (if payment not found)
"error": "Supplier invoice not found" (if invoice not found for detachment)
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/supplier-invoice-payments/{paymentId}/invoices
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/supplier-invoice-payments/5/invoices" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/supplier-invoice-payments/5/invoices"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": [
{ // Details of the first attached invoice
// ... invoice details
},
{ // Details of the second attached invoice (if any)
// ... invoice details
},
// ... and so on for other attached invoices
]
}
Example response (404):
{
"error": "Supplier invoice payment not found"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Suppliers
Api's management for Suppliers
Display a listing of the resource.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/suppliers" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/suppliers"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/suppliers" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"avdfvy\",
\"phone\": \"rzhiwswfekfxeftd\",
\"email\": \"jeramy95@example.org\",
\"address\": \"heg\",
\"city\": \"dzprlqxoc\",
\"state\": \"nmp\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/suppliers"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "avdfvy",
"phone": "rzhiwswfekfxeftd",
"email": "jeramy95@example.org",
"address": "heg",
"city": "dzprlqxoc",
"state": "nmp"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/suppliers/placeat" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/suppliers/placeat"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
requires authentication
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/suppliers/ipsam" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/suppliers/ipsam"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
requires authentication
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/suppliers/ut" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/suppliers/ut"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Task Lead Activities
Display a listing of the resource.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/task_leads" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/task_leads"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/task_leads" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"praesentium\",
\"communication_type\": \"ipsam\",
\"start_date\": \"2025-03-11\",
\"due_date\": \"2025-03-11\",
\"completed_date\": \"2025-03-11\",
\"status\": \"labore\",
\"notes\": \"sed\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/task_leads"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "praesentium",
"communication_type": "ipsam",
"start_date": "2025-03-11",
"due_date": "2025-03-11",
"completed_date": "2025-03-11",
"status": "labore",
"notes": "sed"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/task_leads/voluptatem" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/task_leads/voluptatem"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
requires authentication
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/task_leads/repellat" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"quam\",
\"communication_type\": \"sapiente\",
\"start_date\": \"2025-03-11\",
\"due_date\": \"2025-03-11\",
\"completed_date\": \"2025-03-11\",
\"status\": \"dolores\",
\"notes\": \"qui\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/task_leads/repellat"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "quam",
"communication_type": "sapiente",
"start_date": "2025-03-11",
"due_date": "2025-03-11",
"completed_date": "2025-03-11",
"status": "dolores",
"notes": "qui"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
requires authentication
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/task_leads/ea" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/task_leads/ea"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Tasks
GET api/tasks
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/tasks" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/tasks"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/tasks/projects/{projectId}
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/tasks/projects/12" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/tasks/projects/12"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/tasks
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/tasks" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/tasks"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
requires authentication
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/tasks/ut" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/tasks/ut"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/tasks/update
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/tasks/update" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/tasks/update"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/tasks/delete" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/tasks/delete"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/tasks/move
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/tasks/move" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/tasks/move"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
display data the has to be shown on the board
requires authentication
Changing this will cause the front end to break
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/tasks/board-data" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/tasks/board-data"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/tasks/comments
requires authentication
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/tasks/comments" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"comment\": \"veniam\",
\"commented_by\": \"porro\",
\"task_id\": \"excepturi\"
}"
const url = new URL(
"https://feexid.development.medixmw.com/api/tasks/comments"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"comment": "veniam",
"commented_by": "porro",
"task_id": "excepturi"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Users
Display a listing of the resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/users" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/users"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/users/blanditiis" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/users/blanditiis"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
Example request:
curl --request PUT \
"https://feexid.development.medixmw.com/api/users/pariatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/users/pariatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
Example request:
curl --request DELETE \
"https://feexid.development.medixmw.com/api/users/excepturi" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/users/excepturi"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Restore a specific user
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/patience/restore" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/patience/restore"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/patience/get-user-profile-details
Example request:
curl --request GET \
--get "https://feexid.development.medixmw.com/api/patience/get-user-profile-details" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/patience/get-user-profile-details"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/patience/assign-user-to-role/{id}/{roleID}
Example request:
curl --request POST \
"https://feexid.development.medixmw.com/api/patience/assign-user-to-role/recusandae/dolorem" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://feexid.development.medixmw.com/api/patience/assign-user-to-role/recusandae/dolorem"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.