Introduction
This documentation aims to provide all the information you need to work with our API.
<aside>As you scroll, you'll see code examples for working with the API in different programming languages in the dark area to the right (or as part of the content on mobile).
You can switch the language used with the tabs at the top right (or from the nav menu at the top left on mobile).</aside>
Authenticating requests
This API is not authenticated.
Endpoints
POST api/register
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/register" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"email\": \"kunde.eloisa@example.com\",
\"password\": \"O[2UZ5ij-e\\/dl4m{o,\"
}"
const url = new URL(
"https://madex.legionagency.tech/api/register"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"email": "kunde.eloisa@example.com",
"password": "O[2UZ5ij-e\/dl4m{o,"
};
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/login
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/login" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"qkunze@example.com\",
\"password\": \"O[2UZ5ij-e\\/dl4m{o,\"
}"
const url = new URL(
"https://madex.legionagency.tech/api/login"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "qkunze@example.com",
"password": "O[2UZ5ij-e\/dl4m{o,"
};
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/logout
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/logout" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://madex.legionagency.tech/api/logout"
);
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/hero-sliders
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/hero-sliders" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title_line1=vmqeopfuudtdsufvyvddq"\
--form "title_line2=amniihfqcoynlazghdtqt"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "video=@C:\Users\www\AppData\Local\Temp\php776A.tmp" const url = new URL(
"https://madex.legionagency.tech/api/hero-sliders"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title_line1', 'vmqeopfuudtdsufvyvddq');
body.append('title_line2', 'amniihfqcoynlazghdtqt');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('video', document.querySelector('input[name="video"]').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.
PUT api/hero-sliders/{heroSlider_id}
Example request:
curl --request PUT \
"https://madex.legionagency.tech/api/hero-sliders/17" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title_line1=vmqeopfuudtdsufvyvddq"\
--form "title_line2=amniihfqcoynlazghdtqt"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "video=@C:\Users\www\AppData\Local\Temp\php778C.tmp" const url = new URL(
"https://madex.legionagency.tech/api/hero-sliders/17"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title_line1', 'vmqeopfuudtdsufvyvddq');
body.append('title_line2', 'amniihfqcoynlazghdtqt');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('video', document.querySelector('input[name="video"]').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.
DELETE api/hero-sliders/{heroSlider_id}
Example request:
curl --request DELETE \
"https://madex.legionagency.tech/api/hero-sliders/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://madex.legionagency.tech/api/hero-sliders/17"
);
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/features
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/features" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title=vmqeopfuudtdsufvyvddq"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "sort_order=12"\
--form "video1=@C:\Users\www\AppData\Local\Temp\php779C.tmp" \
--form "video2=@C:\Users\www\AppData\Local\Temp\php779D.tmp" \
--form "video3=@C:\Users\www\AppData\Local\Temp\php779E.tmp" \
--form "video4=@C:\Users\www\AppData\Local\Temp\php779F.tmp" \
--form "video5=@C:\Users\www\AppData\Local\Temp\php77A0.tmp" \
--form "video6=@C:\Users\www\AppData\Local\Temp\php77A1.tmp" const url = new URL(
"https://madex.legionagency.tech/api/features"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title', 'vmqeopfuudtdsufvyvddq');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('sort_order', '12');
body.append('video1', document.querySelector('input[name="video1"]').files[0]);
body.append('video2', document.querySelector('input[name="video2"]').files[0]);
body.append('video3', document.querySelector('input[name="video3"]').files[0]);
body.append('video4', document.querySelector('input[name="video4"]').files[0]);
body.append('video5', document.querySelector('input[name="video5"]').files[0]);
body.append('video6', document.querySelector('input[name="video6"]').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/features/{feature_id}
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/features/17" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title=vmqeopfuudtdsufvyvddq"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "sort_order=12"\
--form "video1=@C:\Users\www\AppData\Local\Temp\php77B2.tmp" \
--form "video2=@C:\Users\www\AppData\Local\Temp\php77B3.tmp" \
--form "video3=@C:\Users\www\AppData\Local\Temp\php77B4.tmp" \
--form "video4=@C:\Users\www\AppData\Local\Temp\php77B5.tmp" \
--form "video5=@C:\Users\www\AppData\Local\Temp\php77B6.tmp" \
--form "video6=@C:\Users\www\AppData\Local\Temp\php77B7.tmp" const url = new URL(
"https://madex.legionagency.tech/api/features/17"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title', 'vmqeopfuudtdsufvyvddq');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('sort_order', '12');
body.append('video1', document.querySelector('input[name="video1"]').files[0]);
body.append('video2', document.querySelector('input[name="video2"]').files[0]);
body.append('video3', document.querySelector('input[name="video3"]').files[0]);
body.append('video4', document.querySelector('input[name="video4"]').files[0]);
body.append('video5', document.querySelector('input[name="video5"]').files[0]);
body.append('video6', document.querySelector('input[name="video6"]').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.
PUT api/features/{feature_id}
Example request:
curl --request PUT \
"https://madex.legionagency.tech/api/features/17" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title=vmqeopfuudtdsufvyvddq"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "sort_order=12"\
--form "video1=@C:\Users\www\AppData\Local\Temp\php77B8.tmp" \
--form "video2=@C:\Users\www\AppData\Local\Temp\php77B9.tmp" \
--form "video3=@C:\Users\www\AppData\Local\Temp\php77BA.tmp" \
--form "video4=@C:\Users\www\AppData\Local\Temp\php77BB.tmp" \
--form "video5=@C:\Users\www\AppData\Local\Temp\php77BC.tmp" \
--form "video6=@C:\Users\www\AppData\Local\Temp\php77BD.tmp" const url = new URL(
"https://madex.legionagency.tech/api/features/17"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title', 'vmqeopfuudtdsufvyvddq');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('sort_order', '12');
body.append('video1', document.querySelector('input[name="video1"]').files[0]);
body.append('video2', document.querySelector('input[name="video2"]').files[0]);
body.append('video3', document.querySelector('input[name="video3"]').files[0]);
body.append('video4', document.querySelector('input[name="video4"]').files[0]);
body.append('video5', document.querySelector('input[name="video5"]').files[0]);
body.append('video6', document.querySelector('input[name="video6"]').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.
DELETE api/features/{feature_id}
Example request:
curl --request DELETE \
"https://madex.legionagency.tech/api/features/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://madex.legionagency.tech/api/features/17"
);
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/abouts
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/abouts" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "first_title_line1=vmqeopfuudtdsufvyvddq"\
--form "first_title_line2=amniihfqcoynlazghdtqt"\
--form "first_label=qxbajwbpilpmufinllwlo"\
--form "first_paragraph=consequatur"\
--form "second_title_line1=mqeopfuudtdsufvyvddqa"\
--form "second_title_line2=mniihfqcoynlazghdtqtq"\
--form "second_label=xbajwbpilpmufinllwloa"\
--form "second_paragraph=consequatur"\
--form "sort_order=45"\
--form "image=@C:\Users\www\AppData\Local\Temp\php77CD.tmp" const url = new URL(
"https://madex.legionagency.tech/api/abouts"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('first_title_line1', 'vmqeopfuudtdsufvyvddq');
body.append('first_title_line2', 'amniihfqcoynlazghdtqt');
body.append('first_label', 'qxbajwbpilpmufinllwlo');
body.append('first_paragraph', 'consequatur');
body.append('second_title_line1', 'mqeopfuudtdsufvyvddqa');
body.append('second_title_line2', 'mniihfqcoynlazghdtqtq');
body.append('second_label', 'xbajwbpilpmufinllwloa');
body.append('second_paragraph', 'consequatur');
body.append('sort_order', '45');
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.
POST api/abouts/{about_id}
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/abouts/17" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "first_title_line1=vmqeopfuudtdsufvyvddq"\
--form "first_title_line2=amniihfqcoynlazghdtqt"\
--form "first_label=qxbajwbpilpmufinllwlo"\
--form "first_paragraph=consequatur"\
--form "second_title_line1=mqeopfuudtdsufvyvddqa"\
--form "second_title_line2=mniihfqcoynlazghdtqtq"\
--form "second_label=xbajwbpilpmufinllwloa"\
--form "second_paragraph=consequatur"\
--form "sort_order=45"\
--form "image=@C:\Users\www\AppData\Local\Temp\php77CE.tmp" const url = new URL(
"https://madex.legionagency.tech/api/abouts/17"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('first_title_line1', 'vmqeopfuudtdsufvyvddq');
body.append('first_title_line2', 'amniihfqcoynlazghdtqt');
body.append('first_label', 'qxbajwbpilpmufinllwlo');
body.append('first_paragraph', 'consequatur');
body.append('second_title_line1', 'mqeopfuudtdsufvyvddqa');
body.append('second_title_line2', 'mniihfqcoynlazghdtqtq');
body.append('second_label', 'xbajwbpilpmufinllwloa');
body.append('second_paragraph', 'consequatur');
body.append('sort_order', '45');
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.
PUT api/abouts/{about_id}
Example request:
curl --request PUT \
"https://madex.legionagency.tech/api/abouts/17" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "first_title_line1=vmqeopfuudtdsufvyvddq"\
--form "first_title_line2=amniihfqcoynlazghdtqt"\
--form "first_label=qxbajwbpilpmufinllwlo"\
--form "first_paragraph=consequatur"\
--form "second_title_line1=mqeopfuudtdsufvyvddqa"\
--form "second_title_line2=mniihfqcoynlazghdtqtq"\
--form "second_label=xbajwbpilpmufinllwloa"\
--form "second_paragraph=consequatur"\
--form "sort_order=45"\
--form "image=@C:\Users\www\AppData\Local\Temp\php77DF.tmp" const url = new URL(
"https://madex.legionagency.tech/api/abouts/17"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('first_title_line1', 'vmqeopfuudtdsufvyvddq');
body.append('first_title_line2', 'amniihfqcoynlazghdtqt');
body.append('first_label', 'qxbajwbpilpmufinllwlo');
body.append('first_paragraph', 'consequatur');
body.append('second_title_line1', 'mqeopfuudtdsufvyvddqa');
body.append('second_title_line2', 'mniihfqcoynlazghdtqtq');
body.append('second_label', 'xbajwbpilpmufinllwloa');
body.append('second_paragraph', 'consequatur');
body.append('sort_order', '45');
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.
DELETE api/abouts/{about_id}
Example request:
curl --request DELETE \
"https://madex.legionagency.tech/api/abouts/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://madex.legionagency.tech/api/abouts/17"
);
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/projects
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/projects" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title=vmqeopfuudtdsufvyvddq"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "sort_order=12"\
--form "image=@C:\Users\www\AppData\Local\Temp\php77F0.tmp" \
--form "video=@C:\Users\www\AppData\Local\Temp\php77F1.tmp" \
--form "before_image=@C:\Users\www\AppData\Local\Temp\php77F2.tmp" \
--form "after_image=@C:\Users\www\AppData\Local\Temp\php77F3.tmp" const url = new URL(
"https://madex.legionagency.tech/api/projects"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title', 'vmqeopfuudtdsufvyvddq');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('sort_order', '12');
body.append('image', document.querySelector('input[name="image"]').files[0]);
body.append('video', document.querySelector('input[name="video"]').files[0]);
body.append('before_image', document.querySelector('input[name="before_image"]').files[0]);
body.append('after_image', document.querySelector('input[name="after_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.
POST api/projects/{project_id}
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/projects/17" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title=vmqeopfuudtdsufvyvddq"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "sort_order=12"\
--form "image=@C:\Users\www\AppData\Local\Temp\php77F4.tmp" \
--form "video=@C:\Users\www\AppData\Local\Temp\php77F5.tmp" \
--form "before_image=@C:\Users\www\AppData\Local\Temp\php7805.tmp" \
--form "after_image=@C:\Users\www\AppData\Local\Temp\php7806.tmp" const url = new URL(
"https://madex.legionagency.tech/api/projects/17"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title', 'vmqeopfuudtdsufvyvddq');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('sort_order', '12');
body.append('image', document.querySelector('input[name="image"]').files[0]);
body.append('video', document.querySelector('input[name="video"]').files[0]);
body.append('before_image', document.querySelector('input[name="before_image"]').files[0]);
body.append('after_image', document.querySelector('input[name="after_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.
PUT api/projects/{project_id}
Example request:
curl --request PUT \
"https://madex.legionagency.tech/api/projects/17" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title=vmqeopfuudtdsufvyvddq"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "sort_order=12"\
--form "image=@C:\Users\www\AppData\Local\Temp\php7807.tmp" \
--form "video=@C:\Users\www\AppData\Local\Temp\php7808.tmp" \
--form "before_image=@C:\Users\www\AppData\Local\Temp\php7809.tmp" \
--form "after_image=@C:\Users\www\AppData\Local\Temp\php780A.tmp" const url = new URL(
"https://madex.legionagency.tech/api/projects/17"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title', 'vmqeopfuudtdsufvyvddq');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('sort_order', '12');
body.append('image', document.querySelector('input[name="image"]').files[0]);
body.append('video', document.querySelector('input[name="video"]').files[0]);
body.append('before_image', document.querySelector('input[name="before_image"]').files[0]);
body.append('after_image', document.querySelector('input[name="after_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.
DELETE api/projects/{project_id}
Example request:
curl --request DELETE \
"https://madex.legionagency.tech/api/projects/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://madex.legionagency.tech/api/projects/17"
);
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/madex-pages
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/madex-pages" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"https://madex.legionagency.tech/api/madex-pages"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "vmqeopfuudtdsufvyvddq",
"description": "Dolores dolorum amet iste laborum eius est dolor."
};
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/madex-pages/{madexPage_id}
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/madex-pages/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"https://madex.legionagency.tech/api/madex-pages/17"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "vmqeopfuudtdsufvyvddq",
"description": "Dolores dolorum amet iste laborum eius est dolor."
};
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/madex-pages/{madexPage_id}
Example request:
curl --request PUT \
"https://madex.legionagency.tech/api/madex-pages/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"https://madex.legionagency.tech/api/madex-pages/17"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "vmqeopfuudtdsufvyvddq",
"description": "Dolores dolorum amet iste laborum eius est dolor."
};
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/madex-pages/{madexPage_id}
Example request:
curl --request DELETE \
"https://madex.legionagency.tech/api/madex-pages/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://madex.legionagency.tech/api/madex-pages/17"
);
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/testimonials
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/testimonials" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "quote=consequatur"\
--form "author=mqeopfuudtdsufvyvddqa"\
--form "position=mniihfqcoynlazghdtqtq"\
--form "sort_order=80"\
--form "logo=@C:\Users\www\AppData\Local\Temp\php782B.tmp" const url = new URL(
"https://madex.legionagency.tech/api/testimonials"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('quote', 'consequatur');
body.append('author', 'mqeopfuudtdsufvyvddqa');
body.append('position', 'mniihfqcoynlazghdtqtq');
body.append('sort_order', '80');
body.append('logo', document.querySelector('input[name="logo"]').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/testimonials/{testimonial_id}
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/testimonials/17" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "quote=consequatur"\
--form "author=mqeopfuudtdsufvyvddqa"\
--form "position=mniihfqcoynlazghdtqtq"\
--form "sort_order=80"\
--form "logo=@C:\Users\www\AppData\Local\Temp\php782C.tmp" const url = new URL(
"https://madex.legionagency.tech/api/testimonials/17"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('quote', 'consequatur');
body.append('author', 'mqeopfuudtdsufvyvddqa');
body.append('position', 'mniihfqcoynlazghdtqtq');
body.append('sort_order', '80');
body.append('logo', document.querySelector('input[name="logo"]').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.
PUT api/testimonials/{testimonial_id}
Example request:
curl --request PUT \
"https://madex.legionagency.tech/api/testimonials/17" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "quote=consequatur"\
--form "author=mqeopfuudtdsufvyvddqa"\
--form "position=mniihfqcoynlazghdtqtq"\
--form "sort_order=80"\
--form "logo=@C:\Users\www\AppData\Local\Temp\php782D.tmp" const url = new URL(
"https://madex.legionagency.tech/api/testimonials/17"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('quote', 'consequatur');
body.append('author', 'mqeopfuudtdsufvyvddqa');
body.append('position', 'mniihfqcoynlazghdtqtq');
body.append('sort_order', '80');
body.append('logo', document.querySelector('input[name="logo"]').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.
DELETE api/testimonials/{testimonial_id}
Example request:
curl --request DELETE \
"https://madex.legionagency.tech/api/testimonials/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://madex.legionagency.tech/api/testimonials/17"
);
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/services
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/services" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title=vmqeopfuudtdsufvyvddq"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "sort_order=12"\
--form "icon=@C:\Users\www\AppData\Local\Temp\php783D.tmp" const url = new URL(
"https://madex.legionagency.tech/api/services"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title', 'vmqeopfuudtdsufvyvddq');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('sort_order', '12');
body.append('icon', document.querySelector('input[name="icon"]').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/services/{service_id}
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/services/17" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title=vmqeopfuudtdsufvyvddq"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "sort_order=12"\
--form "icon=@C:\Users\www\AppData\Local\Temp\php783E.tmp" const url = new URL(
"https://madex.legionagency.tech/api/services/17"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title', 'vmqeopfuudtdsufvyvddq');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('sort_order', '12');
body.append('icon', document.querySelector('input[name="icon"]').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.
PUT api/services/{service_id}
Example request:
curl --request PUT \
"https://madex.legionagency.tech/api/services/17" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title=vmqeopfuudtdsufvyvddq"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "sort_order=12"\
--form "icon=@C:\Users\www\AppData\Local\Temp\php784F.tmp" const url = new URL(
"https://madex.legionagency.tech/api/services/17"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title', 'vmqeopfuudtdsufvyvddq');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('sort_order', '12');
body.append('icon', document.querySelector('input[name="icon"]').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.
DELETE api/services/{service_id}
Example request:
curl --request DELETE \
"https://madex.legionagency.tech/api/services/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://madex.legionagency.tech/api/services/17"
);
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/teams
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/teams" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title=vmqeopfuudtdsufvyvddq"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "vision=consequatur"\
--form "mission=consequatur"\
--form "sort_order=45"\
--form "image=@C:\Users\www\AppData\Local\Temp\php785F.tmp" const url = new URL(
"https://madex.legionagency.tech/api/teams"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title', 'vmqeopfuudtdsufvyvddq');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('vision', 'consequatur');
body.append('mission', 'consequatur');
body.append('sort_order', '45');
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.
POST api/teams/{team_id}
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/teams/17" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title=vmqeopfuudtdsufvyvddq"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "vision=consequatur"\
--form "mission=consequatur"\
--form "sort_order=45"\
--form "image=@C:\Users\www\AppData\Local\Temp\php7860.tmp" const url = new URL(
"https://madex.legionagency.tech/api/teams/17"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title', 'vmqeopfuudtdsufvyvddq');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('vision', 'consequatur');
body.append('mission', 'consequatur');
body.append('sort_order', '45');
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.
PUT api/teams/{team_id}
Example request:
curl --request PUT \
"https://madex.legionagency.tech/api/teams/17" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title=vmqeopfuudtdsufvyvddq"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "vision=consequatur"\
--form "mission=consequatur"\
--form "sort_order=45"\
--form "image=@C:\Users\www\AppData\Local\Temp\php7861.tmp" const url = new URL(
"https://madex.legionagency.tech/api/teams/17"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title', 'vmqeopfuudtdsufvyvddq');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('vision', 'consequatur');
body.append('mission', 'consequatur');
body.append('sort_order', '45');
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.
DELETE api/teams/{team_id}
Example request:
curl --request DELETE \
"https://madex.legionagency.tech/api/teams/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://madex.legionagency.tech/api/teams/17"
);
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/video-editings
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/video-editings" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title=vmqeopfuudtdsufvyvddq"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "slogan=dtdsufvyvddqamniihfqc"\
--form "sort_order=51"\
--form "image=@C:\Users\www\AppData\Local\Temp\php7882.tmp" \
--form "video=@C:\Users\www\AppData\Local\Temp\php7883.tmp" const url = new URL(
"https://madex.legionagency.tech/api/video-editings"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title', 'vmqeopfuudtdsufvyvddq');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('slogan', 'dtdsufvyvddqamniihfqc');
body.append('sort_order', '51');
body.append('image', document.querySelector('input[name="image"]').files[0]);
body.append('video', document.querySelector('input[name="video"]').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/video-editings/{videoEditing_id}
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/video-editings/17" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title=vmqeopfuudtdsufvyvddq"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "slogan=dtdsufvyvddqamniihfqc"\
--form "sort_order=51"\
--form "image=@C:\Users\www\AppData\Local\Temp\php7884.tmp" \
--form "video=@C:\Users\www\AppData\Local\Temp\php7885.tmp" \
--form "slider_images[]=@C:\Users\www\AppData\Local\Temp\php7886.tmp" \
--form "slider_videos[]=@C:\Users\www\AppData\Local\Temp\php7887.tmp" const url = new URL(
"https://madex.legionagency.tech/api/video-editings/17"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title', 'vmqeopfuudtdsufvyvddq');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('slogan', 'dtdsufvyvddqamniihfqc');
body.append('sort_order', '51');
body.append('image', document.querySelector('input[name="image"]').files[0]);
body.append('video', document.querySelector('input[name="video"]').files[0]);
body.append('slider_images[]', document.querySelector('input[name="slider_images[]"]').files[0]);
body.append('slider_videos[]', document.querySelector('input[name="slider_videos[]"]').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.
PUT api/video-editings/{videoEditing_id}
Example request:
curl --request PUT \
"https://madex.legionagency.tech/api/video-editings/17" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title=vmqeopfuudtdsufvyvddq"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "slogan=dtdsufvyvddqamniihfqc"\
--form "sort_order=51"\
--form "image=@C:\Users\www\AppData\Local\Temp\php7897.tmp" \
--form "video=@C:\Users\www\AppData\Local\Temp\php7898.tmp" \
--form "slider_images[]=@C:\Users\www\AppData\Local\Temp\php7899.tmp" \
--form "slider_videos[]=@C:\Users\www\AppData\Local\Temp\php789A.tmp" const url = new URL(
"https://madex.legionagency.tech/api/video-editings/17"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title', 'vmqeopfuudtdsufvyvddq');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('slogan', 'dtdsufvyvddqamniihfqc');
body.append('sort_order', '51');
body.append('image', document.querySelector('input[name="image"]').files[0]);
body.append('video', document.querySelector('input[name="video"]').files[0]);
body.append('slider_images[]', document.querySelector('input[name="slider_images[]"]').files[0]);
body.append('slider_videos[]', document.querySelector('input[name="slider_videos[]"]').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.
DELETE api/video-editings/{videoEditing_id}
Example request:
curl --request DELETE \
"https://madex.legionagency.tech/api/video-editings/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://madex.legionagency.tech/api/video-editings/17"
);
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/photoshoots
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/photoshoots" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title=vmqeopfuudtdsufvyvddq"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "slogan=dtdsufvyvddqamniihfqc"\
--form "sort_order=51"\
--form "image=@C:\Users\www\AppData\Local\Temp\php78AB.tmp" \
--form "video=@C:\Users\www\AppData\Local\Temp\php78AC.tmp" \
--form "slider_images[]=@C:\Users\www\AppData\Local\Temp\php78AD.tmp" \
--form "slider_videos[]=@C:\Users\www\AppData\Local\Temp\php78AE.tmp" const url = new URL(
"https://madex.legionagency.tech/api/photoshoots"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title', 'vmqeopfuudtdsufvyvddq');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('slogan', 'dtdsufvyvddqamniihfqc');
body.append('sort_order', '51');
body.append('image', document.querySelector('input[name="image"]').files[0]);
body.append('video', document.querySelector('input[name="video"]').files[0]);
body.append('slider_images[]', document.querySelector('input[name="slider_images[]"]').files[0]);
body.append('slider_videos[]', document.querySelector('input[name="slider_videos[]"]').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/photoshoots/{photoshoot_id}
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/photoshoots/17" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title=vmqeopfuudtdsufvyvddq"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "slogan=dtdsufvyvddqamniihfqc"\
--form "sort_order=51"\
--form "image=@C:\Users\www\AppData\Local\Temp\php78BF.tmp" \
--form "video=@C:\Users\www\AppData\Local\Temp\php78C0.tmp" \
--form "slider_images[]=@C:\Users\www\AppData\Local\Temp\php78C1.tmp" \
--form "slider_videos[]=@C:\Users\www\AppData\Local\Temp\php78C2.tmp" const url = new URL(
"https://madex.legionagency.tech/api/photoshoots/17"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title', 'vmqeopfuudtdsufvyvddq');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('slogan', 'dtdsufvyvddqamniihfqc');
body.append('sort_order', '51');
body.append('image', document.querySelector('input[name="image"]').files[0]);
body.append('video', document.querySelector('input[name="video"]').files[0]);
body.append('slider_images[]', document.querySelector('input[name="slider_images[]"]').files[0]);
body.append('slider_videos[]', document.querySelector('input[name="slider_videos[]"]').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.
PUT api/photoshoots/{photoshoot_id}
Example request:
curl --request PUT \
"https://madex.legionagency.tech/api/photoshoots/17" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title=vmqeopfuudtdsufvyvddq"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "slogan=dtdsufvyvddqamniihfqc"\
--form "sort_order=51"\
--form "image=@C:\Users\www\AppData\Local\Temp\php78C3.tmp" \
--form "video=@C:\Users\www\AppData\Local\Temp\php78C4.tmp" \
--form "slider_images[]=@C:\Users\www\AppData\Local\Temp\php78C5.tmp" \
--form "slider_videos[]=@C:\Users\www\AppData\Local\Temp\php78C6.tmp" const url = new URL(
"https://madex.legionagency.tech/api/photoshoots/17"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title', 'vmqeopfuudtdsufvyvddq');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('slogan', 'dtdsufvyvddqamniihfqc');
body.append('sort_order', '51');
body.append('image', document.querySelector('input[name="image"]').files[0]);
body.append('video', document.querySelector('input[name="video"]').files[0]);
body.append('slider_images[]', document.querySelector('input[name="slider_images[]"]').files[0]);
body.append('slider_videos[]', document.querySelector('input[name="slider_videos[]"]').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.
DELETE api/photoshoots/{photoshoot_id}
Example request:
curl --request DELETE \
"https://madex.legionagency.tech/api/photoshoots/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://madex.legionagency.tech/api/photoshoots/17"
);
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/videos
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/videos" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title=vmqeopfuudtdsufvyvddq"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "slogan=dtdsufvyvddqamniihfqc"\
--form "sort_order=51"\
--form "image=@C:\Users\www\AppData\Local\Temp\php78E6.tmp" \
--form "video=@C:\Users\www\AppData\Local\Temp\php78E7.tmp" \
--form "slider_images[]=@C:\Users\www\AppData\Local\Temp\php78E8.tmp" \
--form "slider_videos[]=@C:\Users\www\AppData\Local\Temp\php78E9.tmp" const url = new URL(
"https://madex.legionagency.tech/api/videos"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title', 'vmqeopfuudtdsufvyvddq');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('slogan', 'dtdsufvyvddqamniihfqc');
body.append('sort_order', '51');
body.append('image', document.querySelector('input[name="image"]').files[0]);
body.append('video', document.querySelector('input[name="video"]').files[0]);
body.append('slider_images[]', document.querySelector('input[name="slider_images[]"]').files[0]);
body.append('slider_videos[]', document.querySelector('input[name="slider_videos[]"]').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/videos/{video_id}
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/videos/17" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title=vmqeopfuudtdsufvyvddq"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "slogan=dtdsufvyvddqamniihfqc"\
--form "sort_order=51"\
--form "image=@C:\Users\www\AppData\Local\Temp\php78EA.tmp" \
--form "video=@C:\Users\www\AppData\Local\Temp\php78EB.tmp" \
--form "slider_images[]=@C:\Users\www\AppData\Local\Temp\php78EC.tmp" \
--form "slider_videos[]=@C:\Users\www\AppData\Local\Temp\php78ED.tmp" const url = new URL(
"https://madex.legionagency.tech/api/videos/17"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title', 'vmqeopfuudtdsufvyvddq');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('slogan', 'dtdsufvyvddqamniihfqc');
body.append('sort_order', '51');
body.append('image', document.querySelector('input[name="image"]').files[0]);
body.append('video', document.querySelector('input[name="video"]').files[0]);
body.append('slider_images[]', document.querySelector('input[name="slider_images[]"]').files[0]);
body.append('slider_videos[]', document.querySelector('input[name="slider_videos[]"]').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.
PUT api/videos/{video_id}
Example request:
curl --request PUT \
"https://madex.legionagency.tech/api/videos/17" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title=vmqeopfuudtdsufvyvddq"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "slogan=dtdsufvyvddqamniihfqc"\
--form "sort_order=51"\
--form "image=@C:\Users\www\AppData\Local\Temp\php78EE.tmp" \
--form "video=@C:\Users\www\AppData\Local\Temp\php78EF.tmp" \
--form "slider_images[]=@C:\Users\www\AppData\Local\Temp\php78F0.tmp" \
--form "slider_videos[]=@C:\Users\www\AppData\Local\Temp\php7900.tmp" const url = new URL(
"https://madex.legionagency.tech/api/videos/17"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title', 'vmqeopfuudtdsufvyvddq');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('slogan', 'dtdsufvyvddqamniihfqc');
body.append('sort_order', '51');
body.append('image', document.querySelector('input[name="image"]').files[0]);
body.append('video', document.querySelector('input[name="video"]').files[0]);
body.append('slider_images[]', document.querySelector('input[name="slider_images[]"]').files[0]);
body.append('slider_videos[]', document.querySelector('input[name="slider_videos[]"]').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.
DELETE api/videos/{video_id}
Example request:
curl --request DELETE \
"https://madex.legionagency.tech/api/videos/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://madex.legionagency.tech/api/videos/17"
);
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/design-thumbnails
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/design-thumbnails" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"slogan\": \"dtdsufvyvddqamniihfqc\",
\"sort_order\": 51
}"
const url = new URL(
"https://madex.legionagency.tech/api/design-thumbnails"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "vmqeopfuudtdsufvyvddq",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"slogan": "dtdsufvyvddqamniihfqc",
"sort_order": 51
};
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/design-thumbnails/{designThumbnail_id}
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/design-thumbnails/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"slogan\": \"dtdsufvyvddqamniihfqc\",
\"sort_order\": 51
}"
const url = new URL(
"https://madex.legionagency.tech/api/design-thumbnails/17"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "vmqeopfuudtdsufvyvddq",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"slogan": "dtdsufvyvddqamniihfqc",
"sort_order": 51
};
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/design-thumbnails/{designThumbnail_id}
Example request:
curl --request PUT \
"https://madex.legionagency.tech/api/design-thumbnails/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"slogan\": \"dtdsufvyvddqamniihfqc\",
\"sort_order\": 51
}"
const url = new URL(
"https://madex.legionagency.tech/api/design-thumbnails/17"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "vmqeopfuudtdsufvyvddq",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"slogan": "dtdsufvyvddqamniihfqc",
"sort_order": 51
};
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/design-thumbnails/{designThumbnail_id}
Example request:
curl --request DELETE \
"https://madex.legionagency.tech/api/design-thumbnails/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://madex.legionagency.tech/api/design-thumbnails/17"
);
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.
Update the specified resource in storage.
Example request:
curl --request PUT \
"https://madex.legionagency.tech/api/contacts/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"status\": \"read\",
\"admin_notes\": \"vmqeopfuudtdsufvyvddq\"
}"
const url = new URL(
"https://madex.legionagency.tech/api/contacts/17"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"status": "read",
"admin_notes": "vmqeopfuudtdsufvyvddq"
};
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://madex.legionagency.tech/api/contacts/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://madex.legionagency.tech/api/contacts/17"
);
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.
Mark multiple contacts as read.
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/contacts/mark-as-read" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"contact_ids\": [
17
]
}"
const url = new URL(
"https://madex.legionagency.tech/api/contacts/mark-as-read"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"contact_ids": [
17
]
};
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.
Store a newly created resource in storage (Public API).
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/contacts" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"full_name\": \"vmqeopfuudtdsufvyvddq\",
\"email\": \"kunde.eloisa@example.com\",
\"phone_number\": \"hfqcoynlazghdtqtq\",
\"message\": \"xbajwbpilpmufinllwloa\"
}"
const url = new URL(
"https://madex.legionagency.tech/api/contacts"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"full_name": "vmqeopfuudtdsufvyvddq",
"email": "kunde.eloisa@example.com",
"phone_number": "hfqcoynlazghdtqtq",
"message": "xbajwbpilpmufinllwloa"
};
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/stats/track-visit
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/stats/track-visit" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://madex.legionagency.tech/api/stats/track-visit"
);
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/stats/update-activity
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/stats/update-activity" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://madex.legionagency.tech/api/stats/update-activity"
);
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 user's favorite endpoints
Example request:
curl --request POST \
"https://madex.legionagency.tech/api/stats/user-favorites" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://madex.legionagency.tech/api/stats/user-favorites"
);
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.