Introduction
Authentification
Pour accéder à certaines routes de l’API, vous devez être connecté.
Connectez-vous via l’interface web ou utilisez une route d’authentification API (ex : /api/login).
Renseignez ensuite le token dans l’en-tête Authorization :
Authorization: Bearer VOTRE_TOKEN
This documentation aims to provide all the information you need to work with our API.
Authenticating requests
To authenticate requests, include an Authorization header with the value "Bearer Bearer {YOUR_JWT_TOKEN}".
All authenticated endpoints are marked with a requires authentication badge in the documentation below.
Connectez-vous via POST /api/v1/auth/login pour obtenir un JWT. Collez-le ensuite dans le champ Auth en haut de la page (ex: Bearer eyJ...).
Authentification
Mini description: Inscription d'un nouvel utilisateur avec upload d'avatar optionnel. Retourne le token JWT.
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/auth/register" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "username=consequatur"\
--form "first_name=consequatur"\
--form "last_name=consequatur"\
--form "job=consequatur"\
--form "location=consequatur"\
--form "country_id=consequatur"\
--form "phone=consequatur"\
--form "email=qkunze@example.com"\
--form "password=O[2UZ5ij-e/dl4m{o,"\
--form "password_confirmation=consequatur"\
--form "avatar=@C:\Users\fgh\AppData\Local\Temp\phpDDE1.tmp" const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/auth/register"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('username', 'consequatur');
body.append('first_name', 'consequatur');
body.append('last_name', 'consequatur');
body.append('job', 'consequatur');
body.append('location', 'consequatur');
body.append('country_id', 'consequatur');
body.append('phone', 'consequatur');
body.append('email', 'qkunze@example.com');
body.append('password', 'O[2UZ5ij-e/dl4m{o,');
body.append('password_confirmation', 'consequatur');
body.append('avatar', document.querySelector('input[name="avatar"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Example response (201):
{
"success": true,
"data": {
"user": {
"id": 1,
"username": "john_doe",
"email": "john@example.com"
},
"token": "<JWT>"
},
"message": "User created successfully. Please check your email to verify your account."
}
Example response (400):
{
"success": false,
"message": "Require fields error",
"data": {
"email": [
"The email has already been taken."
]
}
}
Example response (500):
{
"success": false,
"message": "Failed to create user"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/v1/auth/login
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/auth/login" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"login\": \"consequatur\",
\"password\": \"O[2UZ5ij-e\\/dl4m{o,\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/auth/login"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"login": "consequatur",
"password": "O[2UZ5ij-e\/dl4m{o,"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (201):
{
"success": true,
"data": {
"token": "<JWT>",
"role": "user",
"id": 1
},
"message": "User connected successfully"
}
Example response (400):
{
"success": false,
"message": "Require fields error",
"data": {
"login": [
"The login field is required."
]
}
}
Example response (401):
{
"success": false,
"message": "Unauthorized",
"data": "invalid credential"
}
Example response (403):
{
"success": false,
"message": "Veuillez vérifier votre email avant de vous connecter. Un email de vérification a été envoyé à votre adresse."
}
Example response (500):
{
"success": false,
"message": "error"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/v1/auth/refresh
requires authentication
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/auth/refresh" \
--header "Authorization: Bearer Bearer {YOUR_JWT_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/auth/refresh"
);
const headers = {
"Authorization": "Bearer Bearer {YOUR_JWT_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Example response (200):
{
"newToken": "<JWT>"
}
Example response (401):
{
"error": "Token has expired and can no longer be refreshed"
}
Example response (500):
{
"error": "Failed to refresh token"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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
Display Oauth2 callback pages.
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/oauth2-callback" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/oauth2-callback"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Authenticate the request for channel access.
Gère l'authentification des channels privés avec JWT. Génère la signature Pusher/Reverb manuellement.
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/broadcasting/auth" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/broadcasting/auth"
);
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/v1/reservations/change-status-reservation-by-proprio/{reservation_id}/{status}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/change-status-reservation-by-proprio/consequatur/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/change-status-reservation-by-proprio/consequatur/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/booking_canceled_to_guest_notification/{payment_id}
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/booking_canceled_to_guest_notification/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/booking_canceled_to_guest_notification/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.
GET api/v1/auth/verify-email
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/auth/verify-email" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/auth/verify-email"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/auth/resend-verification
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/auth/resend-verification" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/auth/resend-verification"
);
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/v1/quotes/confirm
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/confirm" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/confirm"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Vérifie le statut du paiement après redirection depuis Stripe
Cette méthode est appelée par le frontend après que Stripe redirige l'utilisateur vers la page de succès avec le session_id
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/payment/verify" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/payment/verify"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Gère les événements webhook envoyés par Stripe
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/stripe/webhook" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/stripe/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/v1/new_message_from_traveler/{message_id}
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/new_message_from_traveler/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/new_message_from_traveler/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.
POST api/v1/new_message_from_traveler_comment_notification/{comment_id}
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/new_message_from_traveler_comment_notification/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/new_message_from_traveler_comment_notification/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.
POST api/v1/owner_message_to_traveler_notification/{message_id}/{sender_id}
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/owner_message_to_traveler_notification/consequatur/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/owner_message_to_traveler_notification/consequatur/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.
POST api/v1/payment_status_notification/{payment_id}
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payment_status_notification/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payment_status_notification/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.
GET api/v1/user
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/hi
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/hi" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/hi"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/properties/public
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/public" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/public"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/properties/popular
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/popular" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/popular"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/properties/search
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/search" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/search"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Recherche de propriétés avec filtres avancés GET /api/v1/properties/search
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/filter" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/filter"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/properties/{id}/favorite
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/favorite" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/favorite"
);
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/v1/properties/get/favorites
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/get/favorites" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/get/favorites"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/properties/favorites/search
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/favorites/search" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/favorites/search"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/property/types
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property/types" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property/types"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/auth/logout
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/auth/logout" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/auth/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.
GET api/v1/auth/google
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/auth/google" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/auth/google"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/auth/google/callback
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/auth/google/callback" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/auth/google/callback"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/auth/facebook
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/auth/facebook" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/auth/facebook"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/auth/facebook/callback
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/auth/facebook/callback" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/auth/facebook/callback"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/password_reset/verify_email
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/password_reset/verify_email" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/password_reset/verify_email"
);
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/v1/password_reset/verify_code_dended
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/password_reset/verify_code_dended" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/password_reset/verify_code_dended"
);
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/v1/password_reset/reset_old_password
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/password_reset/reset_old_password" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/password_reset/reset_old_password"
);
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/v1/policies/index
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/policies/index" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/policies/index"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/policies/show_policy_by_id/{policy_id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/policies/show_policy_by_id/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/policies/show_policy_by_id/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/policies/store
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/policies/store" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/policies/store"
);
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/v1/policies/update/{policy_id}
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/policies/update/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/policies/update/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.
DELETE api/v1/policies/delete/{policy_id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/policies/delete/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/policies/delete/consequatur"
);
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/v1/policies/type/{type}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/policies/type/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/policies/type/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/user/policies/unaccepted
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/policies/unaccepted" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/policies/unaccepted"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/user/policies/check/{type}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/policies/check/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/policies/check/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/user/policies/accept/{policyId}
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/policies/accept/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/policies/accept/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.
GET api/v1/seasons-test
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/seasons-test" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/seasons-test"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/seasons-test
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/seasons-test" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"season_libelle\": \"vmqeopfuudtdsufvyvddq\",
\"season_description\": \"consequatur\",
\"season_start_date\": \"2020-04-15\",
\"season_end_date\": \"2107-01-18\",
\"season_reduction_percent\": 0,
\"season_min_stay\": 56,
\"season_max_stay\": 17,
\"season_reduction_policy\": \"nights\",
\"property_id\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/seasons-test"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"season_libelle": "vmqeopfuudtdsufvyvddq",
"season_description": "consequatur",
"season_start_date": "2020-04-15",
"season_end_date": "2107-01-18",
"season_reduction_percent": 0,
"season_min_stay": 56,
"season_max_stay": 17,
"season_reduction_policy": "nights",
"property_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.
GET api/v1/seasons-test/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/seasons-test/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/seasons-test/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/seasons-test/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/seasons-test/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"season_libelle\": \"vmqeopfuudtdsufvyvddq\",
\"season_description\": \"consequatur\",
\"season_start_date\": \"2020-04-15\",
\"season_end_date\": \"2107-01-18\",
\"season_reduction_percent\": 0,
\"season_min_stay\": 56,
\"season_max_stay\": 17,
\"season_reduction_policy\": \"nights\",
\"season_status\": \"active\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/seasons-test/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"season_libelle": "vmqeopfuudtdsufvyvddq",
"season_description": "consequatur",
"season_start_date": "2020-04-15",
"season_end_date": "2107-01-18",
"season_reduction_percent": 0,
"season_min_stay": 56,
"season_max_stay": 17,
"season_reduction_policy": "nights",
"season_status": "active"
};
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/v1/seasons-test/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/seasons-test/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/seasons-test/consequatur"
);
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/v1/webhook/notifications
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/webhook/notifications" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/webhook/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.
GET api/v1/get-countries
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/get-countries" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/get-countries"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/get-cities/{country_id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/get-cities/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/get-cities/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/get-neighborhoods/{city_id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/get-neighborhoods/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/get-neighborhoods/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Retourne le calendrier journalier d'une propriété entre deux dates.
GET /api/v1/calendar/properties/{property_id}/availability?from=YYYY-MM-DD&to=YYYY-MM-DD
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendars/properties/consequatur/availability" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"from\": \"2025-12-19\",
\"to\": \"2025-12-19\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendars/properties/consequatur/availability"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"from": "2025-12-19",
"to": "2025-12-19"
};
fetch(url, {
method: "GET",
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.
Opérations en masse sur le calendrier d'une propriété.
POST /api/v1/calendar/properties/{property_id}/bulk body: { action: block|unblock|set_price, start_date, end_date, reason?, price_per_night? }
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendars/properties/consequatur/bulk" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"action\": \"set_price\",
\"start_date\": \"2025-12-19\",
\"end_date\": \"2025-12-19\",
\"reason\": \"vmqeopfuudtdsufvyvddq\",
\"price_per_night\": 1,
\"cleaning_fee\": 45,
\"extra_guest_fee\": 46
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendars/properties/consequatur/bulk"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"action": "set_price",
"start_date": "2025-12-19",
"end_date": "2025-12-19",
"reason": "vmqeopfuudtdsufvyvddq",
"price_per_night": 1,
"cleaning_fee": 45,
"extra_guest_fee": 46
};
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.
Créer une fermeture de dates (non réservable) pour une propriété.
POST /api/v1/calendar/properties/{property_id}/close body: { start_date: Y-m-d, end_date: Y-m-d, reason?: string } Règle: on refuse si la période chevauche une réservation EXISTANTE quel que soit le statut (pending, inquiry, confirmed, etc.).
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendars/properties/consequatur/close" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"start_date\": \"2025-12-19\",
\"end_date\": \"2025-12-19\",
\"reason\": \"vmqeopfuudtdsufvyvddq\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendars/properties/consequatur/close"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"start_date": "2025-12-19",
"end_date": "2025-12-19",
"reason": "vmqeopfuudtdsufvyvddq"
};
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.
Supprimer une fermeture précise par ID.
DELETE /api/v1/calendar/properties/{property_id}/close/{block_id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendars/properties/consequatur/close/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendars/properties/consequatur/close/consequatur"
);
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.
Supprimer toutes les fermetures qui chevauchent une plage.
DELETE /api/v1/calendar/properties/{property_id}/close?from=YYYY-MM-DD&to=YYYY-MM-DD
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendars/properties/consequatur/close" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"from\": \"2025-12-19\",
\"to\": \"2025-12-19\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendars/properties/consequatur/close"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"from": "2025-12-19",
"to": "2025-12-19"
};
fetch(url, {
method: "DELETE",
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/v1/webhook/notifications-list
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/webhook/notifications-list" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/webhook/notifications-list"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/webhook/list
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/webhook/list" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/webhook/list"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/webhook/{propertyUuid}/show
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/webhook/66529e01-d113-3473-8d6f-9e11e09332ea/show" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/webhook/66529e01-d113-3473-8d6f-9e11e09332ea/show"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/webhook/{propertyUuid}/create
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/webhook/66529e01-d113-3473-8d6f-9e11e09332ea/create" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/webhook/66529e01-d113-3473-8d6f-9e11e09332ea/create"
);
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/v1/webhook/{propertyUuid}/create-test
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/webhook/66529e01-d113-3473-8d6f-9e11e09332ea/create-test" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/webhook/66529e01-d113-3473-8d6f-9e11e09332ea/create-test"
);
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/v1/webhook/{webhookUuid}/{propertyUuid}/update
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/webhook/66529e01-d113-3473-8d6f-9e11e09332ea/66529e01-d113-3473-8d6f-9e11e09332ea/update" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/webhook/66529e01-d113-3473-8d6f-9e11e09332ea/66529e01-d113-3473-8d6f-9e11e09332ea/update"
);
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/v1/webhook/{webhookUuid}/delete
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/webhook/66529e01-d113-3473-8d6f-9e11e09332ea/delete" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/webhook/66529e01-d113-3473-8d6f-9e11e09332ea/delete"
);
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/v1/room-types
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/room-types" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/room-types"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/room-types
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/room-types" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/room-types"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"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.
GET api/v1/room-types/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/room-types/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/room-types/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/room-types/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/room-types/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/room-types/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"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/v1/room-types/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/room-types/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/room-types/1"
);
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/v1/property-information-templates
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-information-templates" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-information-templates"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/property-information-templates
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-information-templates" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-information-templates"
);
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/v1/property-information-templates/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-information-templates/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-information-templates/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/property-information-templates/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-information-templates/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-information-templates/consequatur"
);
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/v1/property-information-templates/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-information-templates/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-information-templates/consequatur"
);
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/v1/property-information-templates/categories
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-information-templates/categories" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-information-templates/categories"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/users
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/users" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/users"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/users
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/users" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"username\": \"consequatur\",
\"first_name\": \"consequatur\",
\"last_name\": \"consequatur\",
\"job\": \"consequatur\",
\"location\": \"consequatur\",
\"phone\": \"consequatur\",
\"email\": \"qkunze@example.com\",
\"avatar\": \"consequatur\",
\"password\": \"[2UZ5ij-e\\/dl4\",
\"password_confirmation\": \"vyvddqamniihfqcoynlazghdtqtqxbajwbpilpmufinllwloauydlsmsjuryvojcybzvrbyick\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/users"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"username": "consequatur",
"first_name": "consequatur",
"last_name": "consequatur",
"job": "consequatur",
"location": "consequatur",
"phone": "consequatur",
"email": "qkunze@example.com",
"avatar": "consequatur",
"password": "[2UZ5ij-e\/dl4",
"password_confirmation": "vyvddqamniihfqcoynlazghdtqtqxbajwbpilpmufinllwloauydlsmsjuryvojcybzvrbyick"
};
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/v1/users/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/users/2" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/users/2"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/users/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/users/2" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"username\": \"consequatur\",
\"first_name\": \"consequatur\",
\"last_name\": \"consequatur\",
\"job\": \"consequatur\",
\"location\": \"consequatur\",
\"phone\": \"consequatur\",
\"email\": \"qkunze@example.com\",
\"avatar\": \"consequatur\",
\"password\": \"[2UZ5ij-e\\/dl4\",
\"password_confirmation\": \"vyvddqamniihfqcoynlazghdtqtqxbajwbpilpmufinllwloauydlsmsjuryvojcybzvrbyick\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/users/2"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"username": "consequatur",
"first_name": "consequatur",
"last_name": "consequatur",
"job": "consequatur",
"location": "consequatur",
"phone": "consequatur",
"email": "qkunze@example.com",
"avatar": "consequatur",
"password": "[2UZ5ij-e\/dl4",
"password_confirmation": "vyvddqamniihfqcoynlazghdtqtqxbajwbpilpmufinllwloauydlsmsjuryvojcybzvrbyick"
};
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/v1/users/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/users/2" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/users/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/v1/owner/assigned-users
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/owner/assigned-users" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/owner/assigned-users"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/assigned-users/create-and-assign
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/assigned-users/create-and-assign" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"username\": \"consequatur\",
\"first_name\": \"consequatur\",
\"last_name\": \"consequatur\",
\"email\": \"carolyne.luettgen@example.org\",
\"phone\": \"fuudtdsufvyvddqam\",
\"role\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/assigned-users/create-and-assign"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"username": "consequatur",
"first_name": "consequatur",
"last_name": "consequatur",
"email": "carolyne.luettgen@example.org",
"phone": "fuudtdsufvyvddqam",
"role": "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.
GET api/v1/assigned-users
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/assigned-users" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/assigned-users"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/assigned-users
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/assigned-users" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/assigned-users"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"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.
GET api/v1/assigned-users/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/assigned-users/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/assigned-users/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/assigned-users/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/assigned-users/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"first_name\": \"consequatur\",
\"last_name\": \"consequatur\",
\"role\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/assigned-users/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"first_name": "consequatur",
"last_name": "consequatur",
"role": "consequatur"
};
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/v1/assigned-users/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/assigned-users/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/assigned-users/consequatur"
);
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/v1/space-types
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/space-types" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/space-types"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/space-types
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/space-types" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/space-types"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"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.
GET api/v1/space-types/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/space-types/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/space-types/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/space-types/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/space-types/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/space-types/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"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/v1/space-types/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/space-types/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/space-types/1"
);
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/v1/conveniences-types
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conveniences-types" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conveniences-types"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/conveniences-types
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conveniences-types" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conveniences-types"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"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.
GET api/v1/conveniences-types/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conveniences-types/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conveniences-types/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/conveniences-types/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conveniences-types/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conveniences-types/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"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/v1/conveniences-types/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conveniences-types/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conveniences-types/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.
GET api/v1/channels
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/channels" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/channels"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/channels
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/channels" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "name=consequatur"\
--form "ota_code=HBD"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "icon=@C:\Users\fgh\AppData\Local\Temp\phpED05.tmp" \
--form "picture=@C:\Users\fgh\AppData\Local\Temp\phpED06.tmp" const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/channels"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('name', 'consequatur');
body.append('ota_code', 'HBD');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('icon', document.querySelector('input[name="icon"]').files[0]);
body.append('picture', document.querySelector('input[name="picture"]').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/v1/guest-types
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/guest-types" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/guest-types"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/guest-types
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/guest-types" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/guest-types"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"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.
GET api/v1/guest-types/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/guest-types/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/guest-types/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/guest-types/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/guest-types/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/guest-types/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"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/v1/guest-types/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/guest-types/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/guest-types/1"
);
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/v1/contract-types
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/contract-types" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/contract-types"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/contract-types
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/contract-types" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/contract-types"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"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.
GET api/v1/contract-types/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/contract-types/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/contract-types/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/contract-types/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/contract-types/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/contract-types/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"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/v1/contract-types/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/contract-types/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/contract-types/1"
);
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.
Match automatique d'une politique selon critères.
GET /api/refund-policies/match?user_id=...&accommodation_type=...&stay_nights=...
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/refund-policies/match" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"user_id\": 17,
\"accommodation_type\": \"mqeopfuudtdsufvyvddqa\",
\"stay_nights\": 45
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/refund-policies/match"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"user_id": 17,
"accommodation_type": "mqeopfuudtdsufvyvddqa",
"stay_nights": 45
};
fetch(url, {
method: "GET",
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/v1/refund-policies
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/refund-policies" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/refund-policies"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/refund-policies
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/refund-policies" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"type\": \"flexible\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"deadline_hours\": 12,
\"deadline_days\": 66,
\"refund_percentage\": 4,
\"refundable_after_deadline\": false,
\"requires_proof\": true,
\"accepted_force_majeure_reasons\": [
\"consequatur\"
],
\"host_id\": 17,
\"accommodation_type\": \"mqeopfuudtdsufvyvddqa\",
\"min_nights\": 45,
\"max_nights\": 46,
\"is_default\": false
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/refund-policies"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"type": "flexible",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"deadline_hours": 12,
"deadline_days": 66,
"refund_percentage": 4,
"refundable_after_deadline": false,
"requires_proof": true,
"accepted_force_majeure_reasons": [
"consequatur"
],
"host_id": 17,
"accommodation_type": "mqeopfuudtdsufvyvddqa",
"min_nights": 45,
"max_nights": 46,
"is_default": 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.
GET api/v1/refund-policies/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/refund-policies/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/refund-policies/1"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/refund-policies/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/refund-policies/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"type\": \"flexible\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"deadline_hours\": 12,
\"deadline_days\": 66,
\"refund_percentage\": 4,
\"refundable_after_deadline\": true,
\"requires_proof\": false,
\"accepted_force_majeure_reasons\": [
\"consequatur\"
],
\"host_id\": 17,
\"accommodation_type\": \"mqeopfuudtdsufvyvddqa\",
\"min_nights\": 45,
\"max_nights\": 46,
\"is_default\": false
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/refund-policies/1"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"type": "flexible",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"deadline_hours": 12,
"deadline_days": 66,
"refund_percentage": 4,
"refundable_after_deadline": true,
"requires_proof": false,
"accepted_force_majeure_reasons": [
"consequatur"
],
"host_id": 17,
"accommodation_type": "mqeopfuudtdsufvyvddqa",
"min_nights": 45,
"max_nights": 46,
"is_default": 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.
DELETE api/v1/refund-policies/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/refund-policies/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/refund-policies/1"
);
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/v1/prepartion-times
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/prepartion-times" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/prepartion-times"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/prepartion-times
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/prepartion-times" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/prepartion-times"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"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.
GET api/v1/prepartion-times/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/prepartion-times/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/prepartion-times/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/prepartion-times/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/prepartion-times/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/prepartion-times/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"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/v1/prepartion-times/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/prepartion-times/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/prepartion-times/1"
);
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/v1/offers
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/offers" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/offers"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/offers
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/offers" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"target\": \"amniihfqcoynlazghdtqt\",
\"description\": \"Necessitatibus architecto aut consequatur debitis et id.\",
\"is_active\": false,
\"properties\": [
{
\"id\": \"consequatur\",
\"discount_value\": 45,
\"discount_type\": \"amount\",
\"expiration_date\": \"2107-01-18\"
}
]
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/offers"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"target": "amniihfqcoynlazghdtqt",
"description": "Necessitatibus architecto aut consequatur debitis et id.",
"is_active": false,
"properties": [
{
"id": "consequatur",
"discount_value": 45,
"discount_type": "amount",
"expiration_date": "2107-01-18"
}
]
};
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/v1/offers/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/offers/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/offers/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/offers/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/offers/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"target\": \"amniihfqcoynlazghdtqt\",
\"description\": \"Necessitatibus architecto aut consequatur debitis et id.\",
\"is_active\": true
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/offers/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"target": "amniihfqcoynlazghdtqt",
"description": "Necessitatibus architecto aut consequatur debitis et id.",
"is_active": 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.
DELETE api/v1/offers/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/offers/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/offers/consequatur"
);
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/v1/packages
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/packages" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/packages"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/packages
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/packages" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"target\": \"amniihfqcoynlazghdtqt\",
\"description\": \"Necessitatibus architecto aut consequatur debitis et id.\",
\"is_active\": true
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/packages"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"target": "amniihfqcoynlazghdtqt",
"description": "Necessitatibus architecto aut consequatur debitis et id.",
"is_active": 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.
GET api/v1/packages/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/packages/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/packages/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/packages/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/packages/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"target\": \"amniihfqcoynlazghdtqt\",
\"description\": \"Necessitatibus architecto aut consequatur debitis et id.\",
\"is_active\": false
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/packages/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"target": "amniihfqcoynlazghdtqt",
"description": "Necessitatibus architecto aut consequatur debitis et id.",
"is_active": 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.
DELETE api/v1/packages/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/packages/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/packages/consequatur"
);
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/v1/{packageId}/assign
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/consequatur/assign" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"property_id\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/consequatur/assign"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"property_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.
GET api/v1/conveniences
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conveniences" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conveniences"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/conveniences
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conveniences" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"is_active\": \"consequatur\",
\"conveniences_type_id\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conveniences"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"is_active": "consequatur",
"conveniences_type_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.
GET api/v1/conveniences/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conveniences/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conveniences/17"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/conveniences/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conveniences/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"is_active\": \"consequatur\",
\"conveniences_type_id\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conveniences/17"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"is_active": "consequatur",
"conveniences_type_id": "consequatur"
};
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/v1/conveniences/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conveniences/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conveniences/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.
GET api/v1/countries
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/countries" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/countries"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/countries
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/countries" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"flag\": \"consequatur\",
\"zip_code\": \"consequatur\",
\"iso_code\": \"consequatur\",
\"phone_code\": \"consequatur\",
\"currency_code\": \"consequatur\",
\"support_commission\": 11613.31890586
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/countries"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"flag": "consequatur",
"zip_code": "consequatur",
"iso_code": "consequatur",
"phone_code": "consequatur",
"currency_code": "consequatur",
"support_commission": 11613.31890586
};
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/v1/countries/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/countries/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/countries/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/countries/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/countries/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"flag\": \"consequatur\",
\"zip_code\": \"consequatur\",
\"phone_code\": \"consequatur\",
\"currency_code\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/countries/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"flag": "consequatur",
"zip_code": "consequatur",
"phone_code": "consequatur",
"currency_code": "consequatur"
};
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/v1/countries/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/countries/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/countries/1"
);
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/v1/cities
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/cities" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/cities"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/cities
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/cities" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"country_id\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/cities"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"country_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.
GET api/v1/cities/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/cities/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/cities/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/cities/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/cities/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"country_id\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/cities/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"country_id": "consequatur"
};
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/v1/cities/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/cities/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/cities/1"
);
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/v1/neighborhoods
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/neighborhoods" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/neighborhoods"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/neighborhoods
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/neighborhoods" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"city_id\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/neighborhoods"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"city_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.
GET api/v1/neighborhoods/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/neighborhoods/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/neighborhoods/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/neighborhoods/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/neighborhoods/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/neighborhoods/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur"
};
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/v1/neighborhoods/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/neighborhoods/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/neighborhoods/1"
);
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/v1/code-promos
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/code-promos" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/code-promos"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/code-promos
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/code-promos" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"code\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores molestias ipsam sit.\",
\"value\": 25,
\"discount_type\": \"fexed\",
\"usage_limit\": 19,
\"used_count\": 57,
\"start_date\": \"2025-12-19T17:32:47\",
\"end_date\": \"2096-06-15\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/code-promos"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"code": "vmqeopfuudtdsufvyvddq",
"description": "Dolores molestias ipsam sit.",
"value": 25,
"discount_type": "fexed",
"usage_limit": 19,
"used_count": 57,
"start_date": "2025-12-19T17:32:47",
"end_date": "2096-06-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/v1/code-promos/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/code-promos/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/code-promos/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/code-promos/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/code-promos/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"code\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores molestias ipsam sit.\",
\"value\": 25,
\"discount_type\": \"percentage\",
\"usage_limit\": 19,
\"used_count\": 57,
\"start_date\": \"2025-12-19T17:32:47\",
\"end_date\": \"2107-01-18\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/code-promos/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"code": "vmqeopfuudtdsufvyvddq",
"description": "Dolores molestias ipsam sit.",
"value": 25,
"discount_type": "percentage",
"usage_limit": 19,
"used_count": 57,
"start_date": "2025-12-19T17:32:47",
"end_date": "2107-01-18"
};
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/v1/code-promos/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/code-promos/10" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/code-promos/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 api/v1/market-places
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/market-places" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/market-places"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/market-places
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/market-places" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"logo\": \"consequatur\",
\"url\": \"http:\\/\\/kunze.biz\\/iste-laborum-eius-est-dolor.html\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/market-places"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"logo": "consequatur",
"url": "http:\/\/kunze.biz\/iste-laborum-eius-est-dolor.html"
};
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/v1/market-places/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/market-places/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/market-places/17"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/market-places/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/market-places/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"logo\": \"consequatur\",
\"url\": \"http:\\/\\/kunze.biz\\/iste-laborum-eius-est-dolor.html\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/market-places/17"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"logo": "consequatur",
"url": "http:\/\/kunze.biz\/iste-laborum-eius-est-dolor.html"
};
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/v1/market-places/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/market-places/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/market-places/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.
GET api/v1/document-managements
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/document-managements" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/document-managements"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/document-managements
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/document-managements" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "document_name=vmqeopfuudtdsufvyvddq"\
--form "document_description=consequatur"\
--form "property_id=17"\
--form "party_type=individual"\
--form "document_file=@C:\Users\fgh\AppData\Local\Temp\php707.tmp" const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/document-managements"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('document_name', 'vmqeopfuudtdsufvyvddq');
body.append('document_description', 'consequatur');
body.append('property_id', '17');
body.append('party_type', 'individual');
body.append('document_file', document.querySelector('input[name="document_file"]').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/v1/document-managements/{document_id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/document-managements/2" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/document-managements/2"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/document-managements/{document_id}/update
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/document-managements/2/update" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"document_name\": \"vmqeopfuudtdsufvyvddq\",
\"document_description\": \"consequatur\",
\"property_id\": 17
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/document-managements/2/update"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"document_name": "vmqeopfuudtdsufvyvddq",
"document_description": "consequatur",
"property_id": 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.
DELETE api/v1/document-managements/{document_id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/document-managements/2" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/document-managements/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.
PUT api/v1/document-managements/{document_id}/status
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/document-managements/2/status" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/document-managements/2/status"
);
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.
Générer uniquement un lien de partage public (sans envoi d'email).
POST /api/v1/document-managements/{document_id}/generate-link
Partager un document avec une liste d'emails.
POST /api/v1/document-managements/{document_id}/share
GET api/v1/claims-managements
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/claims-managements" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/claims-managements"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/claims-managements
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/claims-managements" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"mark\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"reservation_id\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/claims-managements"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"mark": "consequatur",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"reservation_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.
PUT api/v1/claims-managements/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/claims-managements/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"mark\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/claims-managements/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"mark": "consequatur",
"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/v1/claims-managements/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/claims-managements/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/claims-managements/1"
);
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/v1/services/my-services
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/services/my-services" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/services/my-services"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/services
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/services" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/services"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/services
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/services" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/services"
);
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/v1/services/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/services/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/services/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/services/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/services/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/services/consequatur"
);
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/v1/services/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/services/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/services/consequatur"
);
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/v1/electronic-key-managements
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/electronic-key-managements" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/electronic-key-managements"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/electronic-key-managements
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/electronic-key-managements" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"key_code\": \"consequatur\",
\"key_type\": \"consequatur\",
\"key_status\": \"consequatur\",
\"property_id\": \"consequatur\",
\"channel_id\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/electronic-key-managements"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"key_code": "consequatur",
"key_type": "consequatur",
"key_status": "consequatur",
"property_id": "consequatur",
"channel_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.
GET api/v1/electronic-key-managements/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/electronic-key-managements/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/electronic-key-managements/17"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/electronic-key-managements/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/electronic-key-managements/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"key_code\": \"consequatur\",
\"key_type\": \"consequatur\",
\"key_status\": \"consequatur\",
\"property_id\": \"consequatur\",
\"channel_id\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/electronic-key-managements/17"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"key_code": "consequatur",
"key_type": "consequatur",
"key_status": "consequatur",
"property_id": "consequatur",
"channel_id": "consequatur"
};
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/v1/electronic-key-managements/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/electronic-key-managements/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/electronic-key-managements/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.
GET api/v1/property-cares/get-stats
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-cares/get-stats" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-cares/get-stats"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/property-cares
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-cares" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-cares"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/property-cares
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-cares" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"kind\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"status\": \"in_progress\",
\"emergency\": \"low\",
\"property_id\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-cares"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"kind": "consequatur",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"status": "in_progress",
"emergency": "low",
"property_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.
GET api/v1/property-cares/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-cares/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-cares/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/property-cares/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-cares/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"kind\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"status\": \"done\",
\"emergency\": \"low\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-cares/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"kind": "consequatur",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"status": "done",
"emergency": "low"
};
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/v1/property-cares/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-cares/5" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-cares/5"
);
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/v1/platform-links
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/platform-links" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/platform-links"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/platform-links
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/platform-links" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"logo\": \"consequatur\",
\"url\": \"http:\\/\\/kunze.biz\\/iste-laborum-eius-est-dolor.html\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/platform-links"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"logo": "consequatur",
"url": "http:\/\/kunze.biz\/iste-laborum-eius-est-dolor.html"
};
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/v1/platform-links/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/platform-links/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/platform-links/17"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/platform-links/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/platform-links/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"logo\": \"consequatur\",
\"url\": \"http:\\/\\/kunze.biz\\/iste-laborum-eius-est-dolor.html\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/platform-links/17"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"logo": "consequatur",
"url": "http:\/\/kunze.biz\/iste-laborum-eius-est-dolor.html"
};
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/v1/platform-links/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/platform-links/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/platform-links/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.
GET api/v1/contract-managements
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/contract-managements" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/contract-managements"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/contract-managements
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/contract-managements" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title=vmqeopfuudtdsufvyvddq"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "start_date=2025-12-19T17:32:54"\
--form "end_date=2107-01-18"\
--form "channel_id=consequatur"\
--form "contract_type=@C:\Users\fgh\AppData\Local\Temp\php1B6C.tmp" const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/contract-managements"
);
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('start_date', '2025-12-19T17:32:54');
body.append('end_date', '2107-01-18');
body.append('channel_id', 'consequatur');
body.append('contract_type', document.querySelector('input[name="contract_type"]').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/v1/contract-managements/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/contract-managements/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/contract-managements/17"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/contract-managements/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/contract-managements/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"start_date\": \"2025-12-19T17:32:55\",
\"end_date\": \"2107-01-18\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/contract-managements/17"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "vmqeopfuudtdsufvyvddq",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"start_date": "2025-12-19T17:32:55",
"end_date": "2107-01-18"
};
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/v1/contract-managements/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/contract-managements/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/contract-managements/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.
GET api/v1/inventory-managements
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/inventory-managements" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/inventory-managements"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/inventory-managements
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/inventory-managements" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"location\": \"consequatur\",
\"date\": \"2025-12-19T17:32:55\",
\"details\": \"consequatur\",
\"item_name\": \"consequatur\",
\"item_description\": \"consequatur\",
\"quantity\": \"consequatur\",
\"reservation_id\": \"consequatur\",
\"property_id\": \"consequatur\",
\"channel_id\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/inventory-managements"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"location": "consequatur",
"date": "2025-12-19T17:32:55",
"details": "consequatur",
"item_name": "consequatur",
"item_description": "consequatur",
"quantity": "consequatur",
"reservation_id": "consequatur",
"property_id": "consequatur",
"channel_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.
GET api/v1/inventory-managements/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/inventory-managements/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/inventory-managements/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/inventory-managements/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/inventory-managements/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"location\": \"consequatur\",
\"date\": \"2025-12-19T17:32:55\",
\"details\": \"consequatur\",
\"item_name\": \"consequatur\",
\"item_description\": \"consequatur\",
\"quantity\": 17,
\"reservation_id\": 17,
\"property_id\": 17,
\"channel_id\": 17
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/inventory-managements/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"location": "consequatur",
"date": "2025-12-19T17:32:55",
"details": "consequatur",
"item_name": "consequatur",
"item_description": "consequatur",
"quantity": 17,
"reservation_id": 17,
"property_id": 17,
"channel_id": 17
};
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/v1/inventory-managements/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/inventory-managements/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/inventory-managements/1"
);
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/v1/seasons
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/seasons" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/seasons"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/seasons
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/seasons" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"season_libelle\": \"vmqeopfuudtdsufvyvddq\",
\"season_description\": \"consequatur\",
\"season_start_date\": \"2020-04-15\",
\"season_end_date\": \"2107-01-18\",
\"season_reduction_percent\": 0,
\"season_min_stay\": 56,
\"season_max_stay\": 17,
\"season_reduction_policy\": \"booking\",
\"property_id\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/seasons"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"season_libelle": "vmqeopfuudtdsufvyvddq",
"season_description": "consequatur",
"season_start_date": "2020-04-15",
"season_end_date": "2107-01-18",
"season_reduction_percent": 0,
"season_min_stay": 56,
"season_max_stay": 17,
"season_reduction_policy": "booking",
"property_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.
GET api/v1/seasons/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/seasons/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/seasons/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/seasons/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/seasons/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"season_libelle\": \"vmqeopfuudtdsufvyvddq\",
\"season_description\": \"consequatur\",
\"season_start_date\": \"2020-04-15\",
\"season_end_date\": \"2107-01-18\",
\"season_reduction_percent\": 0,
\"season_min_stay\": 56,
\"season_max_stay\": 17,
\"season_reduction_policy\": \"nights\",
\"season_status\": \"inactive\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/seasons/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"season_libelle": "vmqeopfuudtdsufvyvddq",
"season_description": "consequatur",
"season_start_date": "2020-04-15",
"season_end_date": "2107-01-18",
"season_reduction_percent": 0,
"season_min_stay": 56,
"season_max_stay": 17,
"season_reduction_policy": "nights",
"season_status": "inactive"
};
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/v1/seasons/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/seasons/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/seasons/consequatur"
);
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/v1/booing-audits
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/booing-audits" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/booing-audits"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/booing-audits
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/booing-audits" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"booking_ref_code\": \"consequatur\",
\"checkin_date\": \"consequatur\",
\"checkout_date\": \"consequatur\",
\"guests\": \"consequatur\",
\"price_details\": \"consequatur\",
\"status\": \"consequatur\",
\"special_requests\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/booing-audits"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"booking_ref_code": "consequatur",
"checkin_date": "consequatur",
"checkout_date": "consequatur",
"guests": "consequatur",
"price_details": "consequatur",
"status": "consequatur",
"special_requests": "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.
GET api/v1/booing-audits/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/booing-audits/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/booing-audits/17"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/booing-audits/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/booing-audits/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"booking_ref_code\": \"consequatur\",
\"checkin_date\": \"consequatur\",
\"checkout_date\": \"consequatur\",
\"guests\": \"consequatur\",
\"price_details\": \"consequatur\",
\"status\": \"consequatur\",
\"special_requests\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/booing-audits/17"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"booking_ref_code": "consequatur",
"checkin_date": "consequatur",
"checkout_date": "consequatur",
"guests": "consequatur",
"price_details": "consequatur",
"status": "consequatur",
"special_requests": "consequatur"
};
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/v1/booing-audits/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/booing-audits/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/booing-audits/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.
GET api/v1/partnerships
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/partnerships" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/partnerships"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/partnerships
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/partnerships" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "type=morale"\
--form "firstName=consequatur"\
--form "lastName=consequatur"\
--form "libelle=consequatur"\
--form "email=carolyne.luettgen@example.org"\
--form "phone=consequatur"\
--form "contract_date=2025-12-19T17:32:56"\
--form "address=consequatur"\
--form "contract_file=@C:\Users\fgh\AppData\Local\Temp\php2496.tmp" const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/partnerships"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('type', 'morale');
body.append('firstName', 'consequatur');
body.append('lastName', 'consequatur');
body.append('libelle', 'consequatur');
body.append('email', 'carolyne.luettgen@example.org');
body.append('phone', 'consequatur');
body.append('contract_date', '2025-12-19T17:32:56');
body.append('address', 'consequatur');
body.append('contract_file', document.querySelector('input[name="contract_file"]').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/v1/partnerships/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/partnerships/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/partnerships/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/partnerships/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/partnerships/consequatur" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "type=physique"\
--form "firstName=consequatur"\
--form "lastName=consequatur"\
--form "libelle=consequatur"\
--form "contract_date=2025-12-19T17:32:56"\
--form "address=consequatur"\
--form "status=active"\
--form "contract_file=@C:\Users\fgh\AppData\Local\Temp\php2498.tmp" const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/partnerships/consequatur"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('type', 'physique');
body.append('firstName', 'consequatur');
body.append('lastName', 'consequatur');
body.append('libelle', 'consequatur');
body.append('contract_date', '2025-12-19T17:32:56');
body.append('address', 'consequatur');
body.append('status', 'active');
body.append('contract_file', document.querySelector('input[name="contract_file"]').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/v1/partnerships/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/partnerships/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/partnerships/consequatur"
);
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/v1/commodities
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/commodities" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/commodities"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/commodities
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/commodities" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"type\": \"amniihfqcoynlazghdtqt\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/commodities"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"type": "amniihfqcoynlazghdtqt"
};
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/v1/commodities/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/commodities/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/commodities/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/commodities/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/commodities/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/commodities/consequatur"
);
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/v1/commodities/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/commodities/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/commodities/consequatur"
);
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/v1/conditions-managements
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conditions-managements" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conditions-managements"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/conditions-managements
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conditions-managements" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conditions-managements"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "consequatur",
"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.
GET api/v1/conditions-managements/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conditions-managements/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conditions-managements/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/conditions-managements/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conditions-managements/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conditions-managements/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "consequatur",
"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/v1/conditions-managements/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conditions-managements/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/conditions-managements/consequatur"
);
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/v1/advertisements
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/advertisements
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"type\": \"consequatur\",
\"posting_date\": \"2025-12-19T17:32:56\",
\"status\": \"pending\",
\"price\": \"consequatur\",
\"property_id\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"type": "consequatur",
"posting_date": "2025-12-19T17:32:56",
"status": "pending",
"price": "consequatur",
"property_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.
GET api/v1/advertisements/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/advertisements/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"type\": \"consequatur\",
\"posting_date\": \"2025-12-19T17:32:56\",
\"status\": \"refuse\",
\"price\": \"consequatur\",
\"property_id\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"type": "consequatur",
"posting_date": "2025-12-19T17:32:56",
"status": "refuse",
"price": "consequatur",
"property_id": "consequatur"
};
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/v1/advertisements/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements/consequatur"
);
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/v1/partnerships/search
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/partnerships/search" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/partnerships/search"
);
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/v1/advertisements/{user_id}/advertisement/status
Example request:
curl --request PATCH \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements/consequatur/advertisement/status" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"status\": \"pending\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements/consequatur/advertisement/status"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"status": "pending"
};
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/v1/advertisements/all/advertisement
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements/all/advertisement" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements/all/advertisement"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/advertisements/{user_id}/advertisement
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements/consequatur/advertisement" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements/consequatur/advertisement"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/advertisements/{user_id}/search-advertisement
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements/consequatur/search-advertisement" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements/consequatur/search-advertisement"
);
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/v1/advertisements/{user_id}/search-type-property-advertisement
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements/consequatur/search-type-property-advertisement" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements/consequatur/search-type-property-advertisement"
);
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/v1/advertisements/{user_id}/advertisement-pending
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements/consequatur/advertisement-pending" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements/consequatur/advertisement-pending"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/advertisements/{user_id}/advertisement-approve
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements/consequatur/advertisement-approve" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements/consequatur/advertisement-approve"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/advertisements/{user_id}/advertisement-refuse
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements/consequatur/advertisement-refuse" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/advertisements/consequatur/advertisement-refuse"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/event/ical-feeds
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/event/ical-feeds" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/event/ical-feeds"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/event/ical-feeds
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/event/ical-feeds" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"consequatur\",
\"url\": \"https:\\/\\/www.mueller.com\\/laborum-eius-est-dolor-dolores-minus-voluptatem\",
\"user_id\": \"consequatur\",
\"source\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/event/ical-feeds"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "consequatur",
"url": "https:\/\/www.mueller.com\/laborum-eius-est-dolor-dolores-minus-voluptatem",
"user_id": "consequatur",
"source": "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/v1/event/ical-feeds/{id}/sync
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/event/ical-feeds/17/sync" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/event/ical-feeds/17/sync"
);
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/v1/event/ical-feeds/{id}/send-events
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/event/ical-feeds/17/send-events" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/event/ical-feeds/17/send-events"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/ical-feeds/export-all-reservation-to-ical
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ical-feeds/export-all-reservation-to-ical" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ical-feeds/export-all-reservation-to-ical"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/ical-feeds/{reservation_id}/export-single-reservation-ical
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ical-feeds/consequatur/export-single-reservation-ical" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ical-feeds/consequatur/export-single-reservation-ical"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/ical-feeds/{property_id}/export-ical
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ical-feeds/consequatur/export-ical" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ical-feeds/consequatur/export-ical"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/ical-feeds/import-ical-file
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ical-feeds/import-ical-file" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ical-feeds/import-ical-file"
);
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/v1/ical-feeds/import-ical-from-url
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ical-feeds/import-ical-from-url" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ical-feeds/import-ical-from-url"
);
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 price override.
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/pricing/overrides" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/pricing/overrides"
);
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.
Afficher tous les tarifs pour une propriété.
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/pricing/overrides" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/pricing/overrides"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/calendar/availability
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/availability" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/availability"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/calendar/check
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/check" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"property_id\": \"consequatur\",
\"checkin_date\": \"2025-12-19T17:32:57\",
\"checkout_date\": \"2107-01-18\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/check"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"property_id": "consequatur",
"checkin_date": "2025-12-19T17:32:57",
"checkout_date": "2107-01-18"
};
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.
PATCH api/v1/tasks/{task}/status
Example request:
curl --request PATCH \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/tasks/consequatur/status" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"status\": \"completed\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/tasks/consequatur/status"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"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.
GET api/v1/tasks/by-status
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/tasks/by-status" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"status\": \"cancelled\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/tasks/by-status"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"status": "cancelled"
};
fetch(url, {
method: "GET",
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/v1/tasks/overdue
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/tasks/overdue" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/tasks/overdue"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/tasks
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/tasks" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/tasks"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/tasks
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/tasks" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"title\": \"amniihfqcoynlazghdtqt\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"starting_date\": \"2025-12-19T17:32:57\",
\"ending_date\": \"2107-01-18\",
\"status\": \"completed\",
\"priority\": \"low\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/tasks"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"title": "amniihfqcoynlazghdtqt",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"starting_date": "2025-12-19T17:32:57",
"ending_date": "2107-01-18",
"status": "completed",
"priority": "low"
};
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/v1/tasks/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/tasks/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/tasks/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/tasks/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/tasks/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"title\": \"amniihfqcoynlazghdtqt\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"starting_date\": \"2025-12-19T17:32:57\",
\"ending_date\": \"2107-01-18\",
\"status\": \"todo\",
\"priority\": \"urgent\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/tasks/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"title": "amniihfqcoynlazghdtqt",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"starting_date": "2025-12-19T17:32:57",
"ending_date": "2107-01-18",
"status": "todo",
"priority": "urgent"
};
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/v1/tasks/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/tasks/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/tasks/consequatur"
);
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 "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_placeholders" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_placeholders"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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 resource in storage.
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_placeholders" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_placeholders"
);
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 "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_placeholders/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_placeholders/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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 \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_placeholders/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_placeholders/1"
);
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 \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_placeholders/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_placeholders/1"
);
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/v1/mail_template_placeholders/{mail_template_placeholder}/status
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_placeholders/consequatur/status" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_placeholders/consequatur/status"
);
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.
Display a listing of the resource.
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_settings" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_settings"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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 resource in storage.
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_settings" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_settings"
);
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 "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_settings/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_settings/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Met à jour les paramètres de notification pour plusieurs propriétés.
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_settings/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_settings/consequatur"
);
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 \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_settings/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_settings/consequatur"
);
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.
Liste tous les types de notifications, groupés par catégorie.
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_types" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_types"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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 resource in storage.
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_types" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_types"
);
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.
(Optionnel) Récupérer un type spécifique.
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_types/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_types/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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 \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_types/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_types/consequatur"
);
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 \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_types/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_types/consequatur"
);
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/v1/mail_template_categories
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_categories" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_categories"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/mail_template_categories
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_categories" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_categories"
);
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/v1/mail_template_categories/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_categories/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_categories/1"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/mail_template_categories/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_categories/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_categories/1"
);
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/v1/mail_template_categories/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_categories/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_categories/1"
);
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/v1/mail_template_categories/{mail_template_category}/status
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_categories/1/status" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_template_categories/1/status"
);
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/v1/mail_templates
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_templates" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_templates"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/mail_templates
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_templates" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_templates"
);
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/v1/mail_templates/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_templates/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_templates/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/mail_templates/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_templates/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_templates/consequatur"
);
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/v1/mail_templates/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_templates/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_templates/consequatur"
);
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/v1/mail_templates/{mail_template}/status
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_templates/consequatur/status" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail_templates/consequatur/status"
);
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/v1/get_languages
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/get_languages" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/get_languages"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/show_language/{language_id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/show_language/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/show_language/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/store_language
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/store_language" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/store_language"
);
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/v1/update_language/{language_id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/update_language/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/update_language/consequatur"
);
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/v1/delete_language/{language_id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/delete_language/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/delete_language/consequatur"
);
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/v1/change_status_language/{language_id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/change_status_language/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/change_status_language/consequatur"
);
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/v1/chatbots
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/chatbots" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/chatbots"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/chatbots/new_chat
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/chatbots/new_chat" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/chatbots/new_chat"
);
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/v1/chatbots/{chatbot_id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/chatbots/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/chatbots/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/chatbots/{chatbot_id}/closed
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/chatbots/consequatur/closed" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/chatbots/consequatur/closed"
);
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/v1/chatbots/{chatbot_id}/destroy
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/chatbots/consequatur/destroy" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/chatbots/consequatur/destroy"
);
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/v1/history_chatbots/chat_to_bot
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/history_chatbots/chat_to_bot" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/history_chatbots/chat_to_bot"
);
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/v1/history_chatbots/{chatbot_history_id}/response
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/history_chatbots/consequatur/response" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/history_chatbots/consequatur/response"
);
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/v1/history_chatbots/{chatbot_history_id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/history_chatbots/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/history_chatbots/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/history_chatbots/{chatbot_history_id}/update
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/history_chatbots/consequatur/update" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/history_chatbots/consequatur/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.
DELETE api/v1/history_chatbots/{chatbot_history_id}/destroy
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/history_chatbots/consequatur/destroy" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/history_chatbots/consequatur/destroy"
);
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/v1/emails
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/emails" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/emails"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/emails
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/emails" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/emails"
);
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/v1/emails/{mail_id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/emails/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/emails/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/emails/{mail_id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/emails/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/emails/consequatur"
);
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/v1/emails/{mail_id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/emails/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/emails/consequatur"
);
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/v1/category_emails
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/category_emails" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/category_emails"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/category_emails
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/category_emails" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/category_emails"
);
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/v1/category_emails/{category_mail_id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/category_emails/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/category_emails/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/category_emails/{category_mail_id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/category_emails/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/category_emails/consequatur"
);
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/v1/category_emails/{category_mail_id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/category_emails/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/category_emails/consequatur"
);
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/v1/calendar/events
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/events" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/events"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/calendar/events
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/events" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/events"
);
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/v1/calendar/events/{eventId}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/events/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/events/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/calendar/events/{eventId}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/events/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/events/consequatur"
);
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/v1/calendar/events/{eventId}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/events/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/events/consequatur"
);
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/v1/calendar/events/{eventId}/participants
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/events/consequatur/participants" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/events/consequatur/participants"
);
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.
DELETE api/v1/calendar/events/{eventId}/participants/{userId}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/events/consequatur/participants/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/events/consequatur/participants/consequatur"
);
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/v1/user/list
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/list" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/list"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/user/search-user
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/search-user" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/search-user"
);
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/v1/user/user-active
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/user-active" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/user-active"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/user/user-to-block
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/user-to-block" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/user-to-block"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/user/user-owner
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/user-owner" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/user-owner"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/user/user-guest
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/user-guest" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/user-guest"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/user/become-owner
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/become-owner" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"user_type\": \"company\",
\"country_region\": \"consequatur\",
\"id_type\": \"driver_licence\",
\"id_number\": \"consequatur\",
\"id_expiry_date\": \"2025-12-19T17:33:00\",
\"id_reco_path\": \"mqeopfuudtdsufvyvddqa\",
\"id_verso_path\": \"mniihfqcoynlazghdtqtq\",
\"place_type\": \"apartment\",
\"place_details\": \"consequatur\",
\"address\": \"consequatur\",
\"city\": \"consequatur\",
\"state\": \"consequatur\",
\"postal_code\": \"consequatur\",
\"country\": \"consequatur\",
\"latitude\": 11613.31890586,
\"longitude\": 11613.31890586
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/become-owner"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"user_type": "company",
"country_region": "consequatur",
"id_type": "driver_licence",
"id_number": "consequatur",
"id_expiry_date": "2025-12-19T17:33:00",
"id_reco_path": "mqeopfuudtdsufvyvddqa",
"id_verso_path": "mniihfqcoynlazghdtqtq",
"place_type": "apartment",
"place_details": "consequatur",
"address": "consequatur",
"city": "consequatur",
"state": "consequatur",
"postal_code": "consequatur",
"country": "consequatur",
"latitude": 11613.31890586,
"longitude": 11613.31890586
};
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/v1/user/owner-requests
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/owner-requests" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/owner-requests"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/user/accept-owner-request/{requesterId}
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/accept-owner-request/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/accept-owner-request/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.
GET api/v1/user/owner-request-status
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/owner-request-status" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/owner-request-status"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/user/individuals
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/individuals" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/individuals"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/user/companies
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/companies" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/companies"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/user/stats
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/stats" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/stats"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/user/stats/detailed
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/stats/detailed" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/stats/detailed"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/user/admin-support/assign
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/admin-support/assign" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/admin-support/assign"
);
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/v1/reservations/search
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/search" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/search"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/reservations/preview
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/preview" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"property_id\": \"consequatur\",
\"checkin_date\": \"2025-12-19T17:33:00\",
\"checkout_date\": \"2107-01-18\",
\"promo_code\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/preview"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"property_id": "consequatur",
"checkin_date": "2025-12-19T17:33:00",
"checkout_date": "2107-01-18",
"promo_code": "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.
GET api/v1/reservations/monthly-stats
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/monthly-stats" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/monthly-stats"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/reservations/analytics/predictive
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/analytics/predictive" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/analytics/predictive"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/reservations/count-reservations-user
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/count-reservations-user" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/count-reservations-user"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/reservations/modified
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/modified" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/modified"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/reservations/with-owner/{owner_id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/with-owner/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/with-owner/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/reservations/{id}/invoice
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/consequatur/invoice" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/consequatur/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.
Approuve un remboursement en attente pour une réservation
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/consequatur/approve-refund" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/consequatur/approve-refund"
);
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.
Rejette un remboursement en attente pour une réservation
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/consequatur/reject-refund" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/consequatur/reject-refund"
);
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.
Annule une réservation
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/consequatur/cancel" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/consequatur/cancel"
);
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.
Retourne le calendrier journalier d'une propriété entre deux dates.
GET /api/v1/calendar/properties/{property_id}/availability?from=YYYY-MM-DD&to=YYYY-MM-DD
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/properties/consequatur/availability" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"from\": \"2025-12-19\",
\"to\": \"2025-12-19\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/properties/consequatur/availability"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"from": "2025-12-19",
"to": "2025-12-19"
};
fetch(url, {
method: "GET",
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/v1/calendar/properties/{property_id}/full
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/properties/consequatur/full" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"from\": \"2025-12-19\",
\"to\": \"2025-12-19\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/properties/consequatur/full"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"from": "2025-12-19",
"to": "2025-12-19"
};
fetch(url, {
method: "GET",
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.
Retourne la liste des dates bloquées sur la période demandée.
Route: GET /api/calendar/properties/blocked-dates?from=YYYY-MM-DD&to=YYYY-MM-DD&property_id=123 (property_id optionnel) Si property_id est fourni, on retourne uniquement pour cette propriété, sinon pour toutes les propriétés.
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/properties/blocked-dates" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"from\": \"2025-12-19\",
\"to\": \"2025-12-19\",
\"property_id\": 17
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/properties/blocked-dates"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"from": "2025-12-19",
"to": "2025-12-19",
"property_id": 17
};
fetch(url, {
method: "GET",
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.
Modifier une date bloquée spécifique PUT /api/v1/calendar/properties/{property_id}/blocks/{block_id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/properties/consequatur/blocked-dates/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"start_date\": \"2025-12-19\",
\"end_date\": \"2025-12-19\",
\"reason\": \"vmqeopfuudtdsufvyvddq\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/properties/consequatur/blocked-dates/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"start_date": "2025-12-19",
"end_date": "2025-12-19",
"reason": "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.
Version légère pour les calendriers (sans les détails jour par jour des quotes) GET /api/v1/calendar/properties/{property_id}/overview?from=YYYY-MM-DD&to=YYYY-MM-DD
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/properties/consequatur/overview" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"from\": \"2025-12-19\",
\"to\": \"2025-12-19\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/properties/consequatur/overview"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"from": "2025-12-19",
"to": "2025-12-19"
};
fetch(url, {
method: "GET",
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/v1/calendar/properties/with-calendar-actions
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/properties/with-calendar-actions" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/properties/with-calendar-actions"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Version avec pagination pour beaucoup de propriétés GET /api/v1/calendar/properties-with-actions/paginated?page=1&per_page=10
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/properties/with-calendar-actions/paginated" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/properties/with-calendar-actions/paginated"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Opérations en masse sur le calendrier d'une propriété.
POST /api/v1/calendar/properties/{property_id}/bulk body: { action: block|unblock|set_price, start_date, end_date, reason?, price_per_night? }
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/properties/consequatur/bulk" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"action\": \"unblock\",
\"start_date\": \"2025-12-19\",
\"end_date\": \"2025-12-19\",
\"reason\": \"vmqeopfuudtdsufvyvddq\",
\"price_per_night\": 1,
\"cleaning_fee\": 45,
\"extra_guest_fee\": 46
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/properties/consequatur/bulk"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"action": "unblock",
"start_date": "2025-12-19",
"end_date": "2025-12-19",
"reason": "vmqeopfuudtdsufvyvddq",
"price_per_night": 1,
"cleaning_fee": 45,
"extra_guest_fee": 46
};
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.
Créer une fermeture de dates (non réservable) pour une propriété.
POST /api/v1/calendar/properties/{property_id}/close body: { start_date: Y-m-d, end_date: Y-m-d, reason?: string } Règle: on refuse si la période chevauche une réservation EXISTANTE quel que soit le statut (pending, inquiry, confirmed, etc.).
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/properties/consequatur/close" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"start_date\": \"2025-12-19\",
\"end_date\": \"2025-12-19\",
\"reason\": \"vmqeopfuudtdsufvyvddq\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/properties/consequatur/close"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"start_date": "2025-12-19",
"end_date": "2025-12-19",
"reason": "vmqeopfuudtdsufvyvddq"
};
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.
Supprimer une fermeture précise par ID.
DELETE /api/v1/calendar/properties/{property_id}/close/{block_id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/properties/consequatur/close/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/properties/consequatur/close/consequatur"
);
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.
Supprimer toutes les fermetures qui chevauchent une plage.
DELETE /api/v1/calendar/properties/{property_id}/close?from=YYYY-MM-DD&to=YYYY-MM-DD
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/properties/consequatur/close" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"from\": \"2025-12-19\",
\"to\": \"2025-12-19\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/calendar/properties/consequatur/close"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"from": "2025-12-19",
"to": "2025-12-19"
};
fetch(url, {
method: "DELETE",
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/v1/quotes/preview
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/preview" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"property_id\": \"consequatur\",
\"checkin_date\": \"2025-12-19T17:33:00\",
\"checkout_date\": \"2107-01-18\",
\"guests\": [
{
\"first_name\": \"mqeopfuudtdsufvyvddqa\",
\"last_name\": \"mniihfqcoynlazghdtqtq\",
\"email\": \"ablanda@example.org\",
\"phone\": \"wbpilpmufinllwloauydl\",
\"country\": \"sm\",
\"language\": \"sjury\",
\"age\": 74
}
],
\"promo_code\": \"consequatur\",
\"services\": [
17
],
\"origin\": \"channex\",
\"refund_policy_id\": 17
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/preview"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"property_id": "consequatur",
"checkin_date": "2025-12-19T17:33:00",
"checkout_date": "2107-01-18",
"guests": [
{
"first_name": "mqeopfuudtdsufvyvddqa",
"last_name": "mniihfqcoynlazghdtqtq",
"email": "ablanda@example.org",
"phone": "wbpilpmufinllwloauydl",
"country": "sm",
"language": "sjury",
"age": 74
}
],
"promo_code": "consequatur",
"services": [
17
],
"origin": "channex",
"refund_policy_id": 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.
POST api/v1/quotes
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"property_id\": \"consequatur\",
\"checkin_date\": \"2025-12-19T17:33:00\",
\"checkout_date\": \"2107-01-18\",
\"guests\": [
{
\"first_name\": \"mqeopfuudtdsufvyvddqa\",
\"last_name\": \"mniihfqcoynlazghdtqtq\",
\"email\": \"ablanda@example.org\",
\"phone\": \"wbpilpmufinllwloauydl\",
\"country\": \"sm\",
\"language\": \"sjury\",
\"age\": 74
}
],
\"promo_code\": \"consequatur\",
\"services\": [
17
],
\"origin\": \"consequatur\",
\"refund_policy_id\": 17,
\"expires_in_hours\": 13,
\"create_reservation\": false,
\"block_dates\": false,
\"notes\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"property_id": "consequatur",
"checkin_date": "2025-12-19T17:33:00",
"checkout_date": "2107-01-18",
"guests": [
{
"first_name": "mqeopfuudtdsufvyvddqa",
"last_name": "mniihfqcoynlazghdtqtq",
"email": "ablanda@example.org",
"phone": "wbpilpmufinllwloauydl",
"country": "sm",
"language": "sjury",
"age": 74
}
],
"promo_code": "consequatur",
"services": [
17
],
"origin": "consequatur",
"refund_policy_id": 17,
"expires_in_hours": 13,
"create_reservation": false,
"block_dates": false,
"notes": "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.
GET api/v1/quotes/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/quotes/{id}/convert
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/consequatur/convert" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"status\": \"confirmed\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/consequatur/convert"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"status": "confirmed"
};
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/v1/quotes/{id}/status
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/consequatur/status" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"status\": \"draft\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/consequatur/status"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"status": "draft"
};
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.
PUT api/v1/quotes/{id}/update
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/consequatur/update" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"checkin_date\": \"2025-12-19T17:33:00\",
\"checkout_date\": \"2107-01-18\",
\"promo_code\": \"consequatur\",
\"services\": [
17
],
\"origin\": \"consequatur\",
\"refund_policy_id\": 17,
\"expires_in_hours\": 13,
\"status\": \"sent\",
\"guests\": [
{
\"first_name\": \"qeopfuudtdsufvyvddqam\",
\"last_name\": \"niihfqcoynlazghdtqtqx\",
\"email\": \"adams.selmer@example.com\",
\"phone\": \"pilpmufinllwloauydlsm\",
\"country\": \"sj\",
\"language\": \"uryvo\",
\"age\": 32
}
]
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/consequatur/update"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"checkin_date": "2025-12-19T17:33:00",
"checkout_date": "2107-01-18",
"promo_code": "consequatur",
"services": [
17
],
"origin": "consequatur",
"refund_policy_id": 17,
"expires_in_hours": 13,
"status": "sent",
"guests": [
{
"first_name": "qeopfuudtdsufvyvddqam",
"last_name": "niihfqcoynlazghdtqtqx",
"email": "adams.selmer@example.com",
"phone": "pilpmufinllwloauydlsm",
"country": "sj",
"language": "uryvo",
"age": 32
}
]
};
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.
POST api/v1/quotes/{id}/send
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/consequatur/send" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/consequatur/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.
GET api/v1/quotes/{id}/email-preview
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/consequatur/email-preview" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/consequatur/email-preview"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/quotes/{id}/email-draft
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/consequatur/email-draft" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email_subject_draft\": \"vmqeopfuudtdsufvyvddq\",
\"email_body_draft\": \"consequatur\",
\"email_locale\": \"hi_IN\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/consequatur/email-draft"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email_subject_draft": "vmqeopfuudtdsufvyvddq",
"email_body_draft": "consequatur",
"email_locale": "hi_IN"
};
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/v1/quotes/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/consequatur"
);
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/v1/quotes/{id}/deletion-check
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/consequatur/deletion-check" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/quotes/consequatur/deletion-check"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/properties
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "name_of_structure=vmqeopfuudtdsufvyvddq"\
--form "who_are_you=amniihfqcoynlazghdtqt"\
--form "internal_name=qxbajwbpilpmufinllwlo"\
--form "public_name=auydlsmsjuryvojcybzvr"\
--form "square_footage=73"\
--form "check_in_time=17:33:00"\
--form "check_in_time_end=17:33:00"\
--form "check_out_time=17:33:00"\
--form "type=mqeopfuudtdsufvyvddqa"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "state=consequatur"\
--form "address=consequatur"\
--form "location=consequatur"\
--form "country_name=consequatur"\
--form "status=consequatur"\
--form "breakfast_included="\
--form "pets_allowed=1"\
--form "base_price=45"\
--form "price_per_night=56"\
--form "currency_id=17"\
--form "pricing=45"\
--form "capacity=56"\
--form "cleaning_fee=16"\
--form "tax=50"\
--form "like_count=55"\
--form "security_deposit=19"\
--form "rating=4"\
--form "image_urls[]=http://kunze.biz/iste-laborum-eius-est-dolor.html"\
--form "import_id=consequatur"\
--form "import_selected[]=consequatur"\
--form "property_type_id=consequatur"\
--form "room_types_channex[][title]=mqeopfuudtdsufvyvddqa"\
--form "room_types_channex[][count_of_rooms]=45"\
--form "room_types_channex[][occ_adults]=46"\
--form "room_types_channex[][default_occupancy]=28"\
--form "room_types_channex[][occ_children]=30"\
--form "room_types_channex[][occ_infants]=25"\
--form "rate_plans_channex[][title]=fqcoynlazghdtqtqxbajw"\
--form "rate_plans_channex[][room_type_title]=bpilpmufinllwloauydls"\
--form "rate_plans_channex[][currency]=consequatur"\
--form "rate_plans_channex[][children_fee]=consequatur"\
--form "rate_plans_channex[][infant_fee]=consequatur"\
--form "rate_plans_channex[][options][][occupancy]=45"\
--form "rate_plans_channex[][options][][is_primary]="\
--form "rate_plans_channex[][options][][rate]=11613.31890586"\
--form "images[]=@C:\Users\fgh\AppData\Local\Temp\php3341.tmp" const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('name_of_structure', 'vmqeopfuudtdsufvyvddq');
body.append('who_are_you', 'amniihfqcoynlazghdtqt');
body.append('internal_name', 'qxbajwbpilpmufinllwlo');
body.append('public_name', 'auydlsmsjuryvojcybzvr');
body.append('square_footage', '73');
body.append('check_in_time', '17:33:00');
body.append('check_in_time_end', '17:33:00');
body.append('check_out_time', '17:33:00');
body.append('type', 'mqeopfuudtdsufvyvddqa');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('state', 'consequatur');
body.append('address', 'consequatur');
body.append('location', 'consequatur');
body.append('country_name', 'consequatur');
body.append('status', 'consequatur');
body.append('breakfast_included', '');
body.append('pets_allowed', '1');
body.append('base_price', '45');
body.append('price_per_night', '56');
body.append('currency_id', '17');
body.append('pricing', '45');
body.append('capacity', '56');
body.append('cleaning_fee', '16');
body.append('tax', '50');
body.append('like_count', '55');
body.append('security_deposit', '19');
body.append('rating', '4');
body.append('image_urls[]', 'http://kunze.biz/iste-laborum-eius-est-dolor.html');
body.append('import_id', 'consequatur');
body.append('import_selected[]', 'consequatur');
body.append('property_type_id', 'consequatur');
body.append('room_types_channex[][title]', 'mqeopfuudtdsufvyvddqa');
body.append('room_types_channex[][count_of_rooms]', '45');
body.append('room_types_channex[][occ_adults]', '46');
body.append('room_types_channex[][default_occupancy]', '28');
body.append('room_types_channex[][occ_children]', '30');
body.append('room_types_channex[][occ_infants]', '25');
body.append('rate_plans_channex[][title]', 'fqcoynlazghdtqtqxbajw');
body.append('rate_plans_channex[][room_type_title]', 'bpilpmufinllwloauydls');
body.append('rate_plans_channex[][currency]', 'consequatur');
body.append('rate_plans_channex[][children_fee]', 'consequatur');
body.append('rate_plans_channex[][infant_fee]', 'consequatur');
body.append('rate_plans_channex[][options][][occupancy]', '45');
body.append('rate_plans_channex[][options][][is_primary]', '');
body.append('rate_plans_channex[][options][][rate]', '11613.31890586');
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.
Importer une propriété depuis une URL externe (Airbnb, Booking, Agoda) POST /api/v1/properties/import
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/import" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/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/v1/properties/{property_id}
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "internal_name=vmqeopfuudtdsufvyvddq"\
--form "public_name=amniihfqcoynlazghdtqt"\
--form "square_footage=16"\
--form "check_in_time=17:33:00"\
--form "check_in_time_end=17:33:00"\
--form "check_out_time=17:33:00"\
--form "type=xbajwbpilpmufinllwloa"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "address=consequatur"\
--form "location=consequatur"\
--form "country_name=consequatur"\
--form "status=consequatur"\
--form "breakfast_included="\
--form "pets_allowed="\
--form "base_price=11613.31890586"\
--form "price_per_night=11613.31890586"\
--form "pricing=11613.31890586"\
--form "capacity=17"\
--form "cleaning_fee=11613.31890586"\
--form "tax=11613.31890586"\
--form "like_count=17"\
--form "security_deposit=11613.31890586"\
--form "rating=11613.31890586"\
--form "delete_media_ids[]=17"\
--form "keep_media_ids[]=17"\
--form "room_types_channex[][title]=mqeopfuudtdsufvyvddqa"\
--form "room_types_channex[][count_of_rooms]=45"\
--form "room_types_channex[][occ_adults]=46"\
--form "room_types_channex[][default_occupancy]=28"\
--form "room_types_channex[][occ_children]=30"\
--form "room_types_channex[][occ_infants]=25"\
--form "rate_plans_channex[][title]=fqcoynlazghdtqtqxbajw"\
--form "rate_plans_channex[][room_type_title]=bpilpmufinllwloauydls"\
--form "rate_plans_channex[][currency]=consequatur"\
--form "rate_plans_channex[][children_fee]=consequatur"\
--form "rate_plans_channex[][infant_fee]=consequatur"\
--form "rate_plans_channex[][options][][occupancy]=45"\
--form "rate_plans_channex[][options][][is_primary]=1"\
--form "rate_plans_channex[][options][][rate]=11613.31890586"\
--form "images[]=@C:\Users\fgh\AppData\Local\Temp\php3370.tmp" \
--form "medias[]=@C:\Users\fgh\AppData\Local\Temp\php3381.tmp" const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('internal_name', 'vmqeopfuudtdsufvyvddq');
body.append('public_name', 'amniihfqcoynlazghdtqt');
body.append('square_footage', '16');
body.append('check_in_time', '17:33:00');
body.append('check_in_time_end', '17:33:00');
body.append('check_out_time', '17:33:00');
body.append('type', 'xbajwbpilpmufinllwloa');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('address', 'consequatur');
body.append('location', 'consequatur');
body.append('country_name', 'consequatur');
body.append('status', 'consequatur');
body.append('breakfast_included', '');
body.append('pets_allowed', '');
body.append('base_price', '11613.31890586');
body.append('price_per_night', '11613.31890586');
body.append('pricing', '11613.31890586');
body.append('capacity', '17');
body.append('cleaning_fee', '11613.31890586');
body.append('tax', '11613.31890586');
body.append('like_count', '17');
body.append('security_deposit', '11613.31890586');
body.append('rating', '11613.31890586');
body.append('delete_media_ids[]', '17');
body.append('keep_media_ids[]', '17');
body.append('room_types_channex[][title]', 'mqeopfuudtdsufvyvddqa');
body.append('room_types_channex[][count_of_rooms]', '45');
body.append('room_types_channex[][occ_adults]', '46');
body.append('room_types_channex[][default_occupancy]', '28');
body.append('room_types_channex[][occ_children]', '30');
body.append('room_types_channex[][occ_infants]', '25');
body.append('rate_plans_channex[][title]', 'fqcoynlazghdtqtqxbajw');
body.append('rate_plans_channex[][room_type_title]', 'bpilpmufinllwloauydls');
body.append('rate_plans_channex[][currency]', 'consequatur');
body.append('rate_plans_channex[][children_fee]', 'consequatur');
body.append('rate_plans_channex[][infant_fee]', 'consequatur');
body.append('rate_plans_channex[][options][][occupancy]', '45');
body.append('rate_plans_channex[][options][][is_primary]', '1');
body.append('rate_plans_channex[][options][][rate]', '11613.31890586');
body.append('images[]', document.querySelector('input[name="images[]"]').files[0]);
body.append('medias[]', document.querySelector('input[name="medias[]"]').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.
DELETE api/v1/properties/{property_id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur"
);
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/v1/properties/{property_id}/comments
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/comments" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/comments"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/properties/{user_id}/property
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/property" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/property"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/properties/{user_id}/property/active
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/property/active" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/property/active"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/properties/{user_id}/property/inactive
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/property/inactive" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/property/inactive"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/properties/{user_id}/property/search-type
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/property/search-type" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/property/search-type"
);
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/v1/properties/{user_id}/property/search-date
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/property/search-date" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/property/search-date"
);
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/v1/properties/{id}/recommended
Example request:
curl --request PATCH \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/recommended" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/recommended"
);
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/v1/properties/webhooks/espo
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/webhooks/espo" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/webhooks/espo"
);
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/v1/claims-managements/{user_id}/claims-managements
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/claims-managements/1/claims-managements" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/claims-managements/1/claims-managements"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/notifications/{id}/mark-as-read
Example request:
curl --request PATCH \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/notifications/consequatur/mark-as-read" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/notifications/consequatur/mark-as-read"
);
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/v1/notifications/send
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/notifications/send" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"vmqeopfuudtdsufvyvddq\",
\"message\": \"consequatur\",
\"payload\": \"consequatur\",
\"role\": \"user\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/notifications/send"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "vmqeopfuudtdsufvyvddq",
"message": "consequatur",
"payload": "consequatur",
"role": "user"
};
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/v1/notifications/send-fcm-notification
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/notifications/send-fcm-notification" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/notifications/send-fcm-notification"
);
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/v1/notifications/sent
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/notifications/sent" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/notifications/sent"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/reservations/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/reservations/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"checkin_date\": \"2025-12-19T17:33:01\",
\"checkout_date\": \"2107-01-18\",
\"special_requests\": \"consequatur\",
\"status\": \"completed\",
\"rooms\": [
{
\"room_type_id\": 17,
\"rate_plan_id\": 17,
\"rooms_count\": 45
}
]
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"checkin_date": "2025-12-19T17:33:01",
"checkout_date": "2107-01-18",
"special_requests": "consequatur",
"status": "completed",
"rooms": [
{
"room_type_id": 17,
"rate_plan_id": 17,
"rooms_count": 45
}
]
};
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/v1/reservations/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/consequatur"
);
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/v1/medias
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/medias" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/medias"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/medias
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/medias" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "media_type=consequatur"\
--form "property_id=consequatur"\
--form "file=@C:\Users\fgh\AppData\Local\Temp\php3632.tmp" const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/medias"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('media_type', 'consequatur');
body.append('property_id', 'consequatur');
body.append('file', document.querySelector('input[name="file"]').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/v1/medias/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/medias/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/medias/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/medias/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/medias/consequatur" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "media_type=consequatur"\
--form "file=@C:\Users\fgh\AppData\Local\Temp\php3643.tmp" const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/medias/consequatur"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('media_type', 'consequatur');
body.append('file', document.querySelector('input[name="file"]').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/v1/medias/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/medias/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/medias/consequatur"
);
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/v1/comments
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/comments" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/comments"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/comments
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/comments" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"comment\": \"consequatur\",
\"owner_response\": \"consequatur\",
\"property_id\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/comments"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"comment": "consequatur",
"owner_response": "consequatur",
"property_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.
GET api/v1/comments/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/comments/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/comments/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/comments/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/comments/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"comment\": \"consequatur\",
\"owner_response\": \"consequatur\",
\"status\": \"rejected\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/comments/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"comment": "consequatur",
"owner_response": "consequatur",
"status": "rejected"
};
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/v1/comments/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/comments/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/comments/consequatur"
);
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/v1/notifications
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/notifications" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/notifications"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/notifications
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/notifications" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"vmqeopfuudtdsufvyvddq\",
\"message\": \"consequatur\",
\"payload\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/notifications"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "vmqeopfuudtdsufvyvddq",
"message": "consequatur",
"payload": "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.
GET api/v1/notifications/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/notifications/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/notifications/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/notifications/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/notifications/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"vmqeopfuudtdsufvyvddq\",
\"message\": \"consequatur\",
\"payload\": \"consequatur\",
\"is_read\": true
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/notifications/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "vmqeopfuudtdsufvyvddq",
"message": "consequatur",
"payload": "consequatur",
"is_read": 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.
DELETE api/v1/notifications/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/notifications/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/notifications/consequatur"
);
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/v1/chats/conversation_summaries
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/chats/conversation_summaries" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/chats/conversation_summaries"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/chats/messages/{userId}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/chats/messages/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/chats/messages/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/chats/send_messages
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/chats/send_messages" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"sender_id\": 17,
\"receiver_id\": 17,
\"content\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/chats/send_messages"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"sender_id": 17,
"receiver_id": 17,
"content": "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.
PATCH api/v1/chats/read-message/{messageId}
Example request:
curl --request PATCH \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/chats/read-message/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/chats/read-message/consequatur"
);
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/v1/chats/delete_message/{messageId}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/chats/delete_message/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/chats/delete_message/consequatur"
);
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/v1/chats/typing_status
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/chats/typing_status" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/chats/typing_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.
GET api/v1/dashboard/reservations/pending
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/reservations/pending" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/reservations/pending"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/dashboard/properties/{propertyId}/booking-rate
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/properties/consequatur/booking-rate" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/properties/consequatur/booking-rate"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/dashboard/properties/{propertyId}/income
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/properties/consequatur/income" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/properties/consequatur/income"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/dashboard/properties/{propertyId}/pending-bookings
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/properties/consequatur/pending-bookings" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/properties/consequatur/pending-bookings"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/dashboard/reservations/monthly
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/reservations/monthly" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/reservations/monthly"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/dashboard/finance/weekly
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/finance/weekly" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/finance/weekly"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/dashboard/finance/monthly
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/finance/monthly" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/finance/monthly"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/dashboard/occupancy-rate/global
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/occupancy-rate/global" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/occupancy-rate/global"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/dashboard/properties/{propertyId}/occupancy-rate
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/properties/consequatur/occupancy-rate" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/properties/consequatur/occupancy-rate"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/dashboard/properties/{propertyId}/comments
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/properties/consequatur/comments" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/properties/consequatur/comments"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/dashboard/properties/{propertyId}/average-rating
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/properties/consequatur/average-rating" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/properties/consequatur/average-rating"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/transactions
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/transactions" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/transactions"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/transactions/export
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/transactions/export" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/transactions/export"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/transactions/stats
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/transactions/stats" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/transactions/stats"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/transactions/monthly-summary
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/transactions/monthly-summary" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/transactions/monthly-summary"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/transactions/{transaction}/refund
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/transactions/consequatur/refund" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/transactions/consequatur/refund"
);
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/v1/transactions/{transaction}/cancel
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/transactions/consequatur/cancel" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/transactions/consequatur/cancel"
);
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/v1/payments/my
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/my" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/my"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/payments/export
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/export" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/export"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/payments/{id}/status
Example request:
curl --request PATCH \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/consequatur/status" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"status\": \"FAILED\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/consequatur/status"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"status": "FAILED"
};
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/v1/payments/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/consequatur"
);
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/v1/payments/process
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/process" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"reservation_id\": 17,
\"currency\": \"mqe\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/process"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"reservation_id": 17,
"currency": "mqe"
};
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/v1/payments/payments/webhook
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/payments/webhook" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/payments/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.
GET api/v1/payments/{payment}/receipt
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/consequatur/receipt" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/consequatur/receipt"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/payments/test-webhook/{session_id}
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/test-webhook/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/test-webhook/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.
POST api/v1/payments/finalize/{session_id}
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/finalize/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/finalize/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.
POST api/v1/cards
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/cards" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"payment_method_id\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/cards"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"payment_method_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.
GET api/v1/property-types
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-types" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-types"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/property-types
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-types" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-types"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"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.
GET api/v1/property-types/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-types/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-types/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/property-types/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-types/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-types/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"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/v1/property-types/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-types/47" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/property-types/47"
);
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.
PATCH api/v1/geographic-restrictions/{restriction_id}/status
Example request:
curl --request PATCH \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/geographic-restrictions/consequatur/status" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"status\": \"active\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/geographic-restrictions/consequatur/status"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"status": "active"
};
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/v1/geographic-restrictions/users-dropdown
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/geographic-restrictions/users-dropdown" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/geographic-restrictions/users-dropdown"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/geographic-restrictions/stats
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/geographic-restrictions/stats" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/geographic-restrictions/stats"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/geographic-restrictions
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/geographic-restrictions" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/geographic-restrictions"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/geographic-restrictions
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/geographic-restrictions" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"restricted_regions\": [
\"vmqeopfuudtdsufvyvddq\"
],
\"restriction_type\": \"limited_access\",
\"status\": \"active\",
\"comments\": \"amniihfqcoynlazghdtqt\",
\"user_id\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/geographic-restrictions"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"restricted_regions": [
"vmqeopfuudtdsufvyvddq"
],
"restriction_type": "limited_access",
"status": "active",
"comments": "amniihfqcoynlazghdtqt",
"user_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.
GET api/v1/geographic-restrictions/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/geographic-restrictions/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/geographic-restrictions/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/geographic-restrictions/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/geographic-restrictions/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"restricted_regions\": [
\"vmqeopfuudtdsufvyvddq\"
],
\"restriction_type\": \"conditioned_access\",
\"status\": \"review\",
\"comments\": \"amniihfqcoynlazghdtqt\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/geographic-restrictions/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"restricted_regions": [
"vmqeopfuudtdsufvyvddq"
],
"restriction_type": "conditioned_access",
"status": "review",
"comments": "amniihfqcoynlazghdtqt"
};
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/v1/geographic-restrictions/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/geographic-restrictions/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/geographic-restrictions/consequatur"
);
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/v1/newsletters/send
POST api/v1/newsletters/subscribe
POST api/v1/newsletters/unsubscribe
GET api/v1/dashboard/reservation/booking-rate
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/reservation/booking-rate" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/reservation/booking-rate"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/dashboard/reservations/count
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/reservations/count" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/reservations/count"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/dashboard/payments-income/count
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/payments-income/count" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/payments-income/count"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/dashboard/admin-proprio/count
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/admin-proprio/count" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/admin-proprio/count"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/dashboard/admin-client/count
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/admin-client/count" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/admin-client/count"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/dashboard/comments/count
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/comments/count" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/dashboard/comments/count"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/payments/reports
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/reports" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/reports"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/payments/generate-report
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/generate-report" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"month\": 2,
\"year\": \"8107\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/generate-report"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"month": 2,
"year": "8107"
};
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/v1/payments/download-report/{filename}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/download-report/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/download-report/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/payments/{user_id}/all-payments
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/consequatur/all-payments" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/consequatur/all-payments"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/payments/{user_id}/income-payments
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/consequatur/income-payments" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/consequatur/income-payments"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/payments/{user_id}/pending-payments
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/consequatur/pending-payments" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/consequatur/pending-payments"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/ratings
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ratings" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ratings"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/ratings/all-properties
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ratings/all-properties" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ratings/all-properties"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/ratings/user/properties
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ratings/user/properties" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ratings/user/properties"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/ratings/property/{propertyId}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ratings/property/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ratings/property/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/ratings/property/{propertyId}/my
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ratings/property/consequatur/my" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ratings/property/consequatur/my"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/ratings/property/{propertyId}/stats
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ratings/property/consequatur/stats" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ratings/property/consequatur/stats"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/ratings/property/{propertyId}
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ratings/property/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"stars\": 5
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ratings/property/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"stars": 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.
PUT api/v1/ratings/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ratings/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"stars\": 5
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ratings/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"stars": 5
};
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/v1/ratings/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ratings/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ratings/consequatur"
);
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/v1/expenses
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expenses" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"amount\": 73,
\"description\": \"Dolorum amet iste laborum eius est dolor.\",
\"date\": \"2025-12-19T17:33:02\",
\"category_name\": \"dtdsufvyvddqamniihfqc\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expenses"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"amount": 73,
"description": "Dolorum amet iste laborum eius est dolor.",
"date": "2025-12-19T17:33:02",
"category_name": "dtdsufvyvddqamniihfqc"
};
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/v1/expenses
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expenses" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expenses"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/expenses/statistics
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expenses/statistics" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expenses/statistics"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/expenses/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expenses/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expenses/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/expenses/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expenses/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"amount\": 73,
\"description\": \"Dolorum amet iste laborum eius est dolor.\",
\"date\": \"2025-12-19T17:33:02\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expenses/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"amount": 73,
"description": "Dolorum amet iste laborum eius est dolor.",
"date": "2025-12-19T17:33:02"
};
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/v1/expenses/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expenses/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expenses/consequatur"
);
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/v1/expense-categories
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expense-categories" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expense-categories"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/expense-categories
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expense-categories" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expense-categories"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq"
};
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/v1/expense-categories/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expense-categories/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expense-categories/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/expense-categories/statistics
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expense-categories/statistics" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expense-categories/statistics"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/expense-categories/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expense-categories/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expense-categories/consequatur"
);
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/v1/expense-categories/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expense-categories/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/expense-categories/consequatur"
);
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/v1/incomes/admin-proprio
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/incomes/admin-proprio" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/incomes/admin-proprio"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/incomes/support
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/incomes/support" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/incomes/support"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/incomes/analytics
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/incomes/analytics" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/incomes/analytics"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/withdrawals
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/withdrawals" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"admin_proprio_id\": \"consequatur\",
\"amount\": 13,
\"currency\": \"eur\",
\"description\": \"Amet iste laborum eius est dolor dolores.\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/withdrawals"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"admin_proprio_id": "consequatur",
"amount": 13,
"currency": "eur",
"description": "Amet iste laborum eius est dolor dolores."
};
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/v1/withdrawals
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/withdrawals" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/withdrawals"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/withdrawals/stripe-connect/{user_id}
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/withdrawals/stripe-connect/2" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/withdrawals/stripe-connect/2"
);
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/v1/withdrawals/stripe/return
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/withdrawals/stripe/return" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/withdrawals/stripe/return"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/withdrawals/stripe/refresh
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/withdrawals/stripe/refresh" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/withdrawals/stripe/refresh"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/balances
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/balances" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/balances"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/reservations/{reservation}/host-cancel
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/consequatur/host-cancel" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"reason\": \"vmqeopfuudtdsufvyvddq\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/consequatur/host-cancel"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"reason": "vmqeopfuudtdsufvyvddq"
};
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/v1/host/cancellations/stats
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/host/cancellations/stats" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/host/cancellations/stats"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/host/cancellations/penalties
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/host/cancellations/penalties" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/host/cancellations/penalties"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/maintenances
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/maintenances" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/maintenances"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/maintenances
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/maintenances" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"property_id\": \"consequatur\",
\"user_id\": \"consequatur\",
\"kind\": \"mqeopfuudtdsufvyvddqa\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"emergency\": \"medium\",
\"status\": \"completed\",
\"reported_at\": \"2025-12-19T17:33:02\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/maintenances"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"property_id": "consequatur",
"user_id": "consequatur",
"kind": "mqeopfuudtdsufvyvddqa",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"emergency": "medium",
"status": "completed",
"reported_at": "2025-12-19T17:33:02"
};
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/v1/maintenances/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/maintenances/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/maintenances/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/maintenances/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/maintenances/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"kind\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"emergency\": \"high\",
\"status\": \"completed\",
\"reported_at\": \"2025-12-19T17:33:02\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/maintenances/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"kind": "vmqeopfuudtdsufvyvddq",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"emergency": "high",
"status": "completed",
"reported_at": "2025-12-19T17:33:02"
};
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/v1/maintenances/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/maintenances/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/maintenances/consequatur"
);
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/v1/maintenances/by-property/{property_id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/maintenances/by-property/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/maintenances/by-property/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/rapports_taxe
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/rapports_taxe" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/rapports_taxe"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/rapports_taxe/export-csv
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/rapports_taxe/export-csv" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/rapports_taxe/export-csv"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/rapports_taxe/export-pdf
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/rapports_taxe/export-pdf" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/rapports_taxe/export-pdf"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/marketplaces/user_info_key
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/marketplaces/user_info_key" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/marketplaces/user_info_key"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/marketplaces/user_property_key
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/marketplaces/user_property_key" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/marketplaces/user_property_key"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/marketplaces/user_reservations_key
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/marketplaces/user_reservations_key" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/marketplaces/user_reservations_key"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/marketplaces/user_payments_key
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/marketplaces/user_payments_key" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/marketplaces/user_payments_key"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/marketplaces/info_user/{key}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/marketplaces/info_user/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/marketplaces/info_user/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/marketplaces/user_property/{key}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/marketplaces/user_property/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/marketplaces/user_property/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/marketplaces/user_reservations/{key}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/marketplaces/user_reservations/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/marketplaces/user_reservations/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/marketplaces/user_payments/{key}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/marketplaces/user_payments/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/marketplaces/user_payments/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/properties/properties/grouped-by-location
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/properties/grouped-by-location" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/properties/grouped-by-location"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/privacy-terms
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/privacy-terms" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/privacy-terms"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/privacy-terms/for-user
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/privacy-terms/for-user" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/privacy-terms/for-user"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/privacy-terms
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/privacy-terms" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/privacy-terms"
);
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/v1/privacy-terms/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/privacy-terms/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/privacy-terms/consequatur"
);
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/v1/privacy-terms/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/privacy-terms/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/privacy-terms/consequatur"
);
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/v1/smart-locks/providers
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/providers" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/providers"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/smart-locks/providers/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/providers/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/providers/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/smart-locks/providers/{providerId}/connect
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/providers/consequatur/connect" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/providers/consequatur/connect"
);
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/v1/smart-locks/providers/{providerId}/sync-locks
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/providers/consequatur/sync-locks" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/providers/consequatur/sync-locks"
);
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/v1/smart-locks/locks
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/locks" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/locks"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/smart-locks/locks
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/locks" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/locks"
);
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/v1/smart-locks/locks/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/locks/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/locks/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/smart-locks/locks/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/locks/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/locks/consequatur"
);
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/v1/smart-locks/locks/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/locks/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/locks/consequatur"
);
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/v1/smart-locks/locks/{lockId}/access-codes
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/locks/consequatur/access-codes" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/locks/consequatur/access-codes"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/smart-locks/locks/{lockId}/access-codes
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/locks/consequatur/access-codes" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/locks/consequatur/access-codes"
);
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.
DELETE api/v1/smart-locks/locks/{lockId}/access-codes/{accessCodeId}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/locks/consequatur/access-codes/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/locks/consequatur/access-codes/consequatur"
);
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/v1/smart-locks/locks/{lockId}/access-logs
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/locks/consequatur/access-logs" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/locks/consequatur/access-logs"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/smart-locks/nuki/smartlocks/{connectionId}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/smartlocks/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/smartlocks/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/smart-locks/nuki/smartlocks/{smartLockId}/state
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/smartlocks/consequatur/state" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/smartlocks/consequatur/state"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/smart-locks/nuki/smartlocks/{smartLockId}/lock
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/smartlocks/consequatur/lock" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/smartlocks/consequatur/lock"
);
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/v1/smart-locks/nuki/smartlocks/{smartLockId}/unlock
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/smartlocks/consequatur/unlock" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/smartlocks/consequatur/unlock"
);
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/v1/smart-locks/nuki/smartlocks/{smartLockId}/access-codes
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/smartlocks/consequatur/access-codes" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/smartlocks/consequatur/access-codes"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/smart-locks/nuki/smartlocks/{smartLockId}/access-codes
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/smartlocks/consequatur/access-codes" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/smartlocks/consequatur/access-codes"
);
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/v1/smart-locks/nuki/smartlocks/{smartLockId}/access-codes/{authId}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/smartlocks/consequatur/access-codes/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/smartlocks/consequatur/access-codes/consequatur"
);
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/v1/smart-locks/nuki/smartlocks/{smartLockId}/access-codes/{authId}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/smartlocks/consequatur/access-codes/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/smartlocks/consequatur/access-codes/consequatur"
);
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/v1/smart-locks/nuki/smartlocks/{smartLockId}/access-logs
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/smartlocks/consequatur/access-logs" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/smartlocks/consequatur/access-logs"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/smart-locks/nuki/smartlocks/{smartLockId}/config
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/smartlocks/consequatur/config" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/smartlocks/consequatur/config"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/smart-locks/nuki/smartlocks/{smartLockId}/config
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/smartlocks/consequatur/config" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/smartlocks/consequatur/config"
);
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/v1/smart-locks/nuki/account
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/account" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/account"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/smart-locks/nuki/sync
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/sync" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/smart-locks/nuki/sync"
);
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/v1/properties/{propertyId}/smart-lock/status
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/smart-lock/status" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/smart-lock/status"
);
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/v1/properties/{propertyId}/smart-lock/sync
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/smart-lock/sync" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/smart-lock/sync"
);
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/v1/properties/{propertyId}/smart-lock/reservations/access-code
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/smart-lock/reservations/access-code" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/smart-lock/reservations/access-code"
);
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.
DELETE api/v1/properties/{propertyId}/smart-lock/reservations/access-code
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/smart-lock/reservations/access-code" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/consequatur/smart-lock/reservations/access-code"
);
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/v1/faqs
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/faqs" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/faqs"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/faqs
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/faqs" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"consequatur\",
\"description\": \"consequatur\",
\"role\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/faqs"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "consequatur",
"description": "consequatur",
"role": "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.
GET api/v1/faqs/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/faqs/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/faqs/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/faqs/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/faqs/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/faqs/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "consequatur"
};
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/v1/faqs/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/faqs/2" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/faqs/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/v1/vrbo-connection/channels-list
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/vrbo-connection/channels-list" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/vrbo-connection/channels-list"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/vrbo-connection/authenticate
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/vrbo-connection/authenticate" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"username\": \"consequatur\",
\"password\": \"O[2UZ5ij-e\\/dl4m{o,\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/vrbo-connection/authenticate"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"username": "consequatur",
"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/v1/test-send-me-mail
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/test-send-me-mail" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/test-send-me-mail"
);
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/v1/feedback/comment
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/feedback/comment" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"booking_ref_code\": \"consequatur\",
\"user_email\": \"carolyne.luettgen@example.org\",
\"comment\": \"consequatur\",
\"owner_response\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/feedback/comment"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"booking_ref_code": "consequatur",
"user_email": "carolyne.luettgen@example.org",
"comment": "consequatur",
"owner_response": "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/v1/feedback/rating/{propertyId}
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/feedback/rating/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"booking_ref_code\": \"consequatur\",
\"user_email\": \"carolyne.luettgen@example.org\",
\"stars\": 2
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/feedback/rating/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"booking_ref_code": "consequatur",
"user_email": "carolyne.luettgen@example.org",
"stars": 2
};
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.
✅ Afficher les infos de la réservation à partir du booking_ref_code
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/public-feedback/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/public-feedback/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
✅ Enregistrer un commentaire et une note publique
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/public-feedback/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"stars\": 5,
\"comment\": \"mqeopfuudtdsufvyvddqa\",
\"email\": \"eloisa.harber@example.com\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/public-feedback/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"stars": 5,
"comment": "mqeopfuudtdsufvyvddqa",
"email": "eloisa.harber@example.com"
};
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.
Liste tous les rapports financiers GET /api/financial-reports
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/financial-reports" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/financial-reports"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Obtient un résumé des rapports par type GET /api/financial-reports/summary
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/financial-reports/summary" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/financial-reports/summary"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Obtient des statistiques en temps réel (sans créer de rapport) GET /api/financial-reports/statistics/real-time
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/financial-reports/statistics/real-time" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"period_start\": \"2025-12-19T17:33:03\",
\"period_end\": \"2107-01-18\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/financial-reports/statistics/real-time"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"period_start": "2025-12-19T17:33:03",
"period_end": "2107-01-18"
};
fetch(url, {
method: "GET",
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.
Génère un nouveau rapport financier POST /api/financial-reports/generate
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/financial-reports/generate" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"report_type\": \"monthly\",
\"period_start\": \"2025-12-19T17:33:03\",
\"period_end\": \"2107-01-18\",
\"notes\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/financial-reports/generate"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"report_type": "monthly",
"period_start": "2025-12-19T17:33:03",
"period_end": "2107-01-18",
"notes": "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.
Affiche un rapport financier spécifique GET /api/financial-reports/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/financial-reports/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/financial-reports/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Met à jour un rapport financier PUT/PATCH /api/financial-reports/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/financial-reports/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"notes\": \"consequatur\",
\"status\": \"draft\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/financial-reports/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"notes": "consequatur",
"status": "draft"
};
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.
Met à jour un rapport financier PUT/PATCH /api/financial-reports/{id}
Example request:
curl --request PATCH \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/financial-reports/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"notes\": \"consequatur\",
\"status\": \"archived\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/financial-reports/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"notes": "consequatur",
"status": "archived"
};
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.
Supprime un rapport financier DELETE /api/financial-reports/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/financial-reports/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/financial-reports/consequatur"
);
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.
Publie un rapport financier POST /api/financial-reports/{id}/publish
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/financial-reports/consequatur/publish" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/financial-reports/consequatur/publish"
);
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.
Archive un rapport financier POST /api/financial-reports/{id}/archive
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/financial-reports/consequatur/archive" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/financial-reports/consequatur/archive"
);
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.
Tester la connexion Booking.com via Channex Corps attendu (exemple): { "channel": "BookingCom", "settings": {"hotel_id": "5868189"} }
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/booking/test-connection" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"channel\": \"consequatur\",
\"settings\": []
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/booking/test-connection"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"channel": "consequatur",
"settings": []
};
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/v1/ota/booking/connection-details
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/booking/connection-details" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"channel\": \"consequatur\",
\"settings\": []
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/booking/connection-details"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"channel": "consequatur",
"settings": []
};
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.
Crée (ou met à jour) la connexion Booking.com pour une propriété Channex donnée
POST body attendu (exemple): { "credentials": { "hotel_id": "1234567", // identifiant Booking.com (fourni par la doc/partenaire) "legal_entity_id": "ABCDEF", // si requis "region": "EU" // si requis }, "options": { "auto_publish_ari": true } }
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/booking/properties/consequatur/connect" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"credentials\": [],
\"options\": {
\"auto_publish_ari\": false
}
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/booking/properties/consequatur/connect"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"credentials": [],
"options": {
"auto_publish_ari": 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.
Mappe les Room Types et Rate Plans locaux avec Booking.com via Channex.
On récupère les external_id des ChannexRoomType/ChannexRatePlan et on crée les mappages côté channel.
POST body (exemple si Booking exige des codes côté OTA): { "mappings": [ { "room_type_external_id": "RT_abc123", "ota_room_code": "12345" }, { "rate_plan_external_id": "RP_def456", "ota_rate_code": "BAR" } ] }
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/booking/properties/consequatur/map" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"mappings\": [
{
\"room_type_external_id\": \"consequatur\",
\"rate_plan_external_id\": \"consequatur\",
\"ota_room_code\": \"consequatur\",
\"ota_rate_code\": \"consequatur\"
}
]
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/booking/properties/consequatur/map"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"mappings": [
{
"room_type_external_id": "consequatur",
"rate_plan_external_id": "consequatur",
"ota_room_code": "consequatur",
"ota_rate_code": "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.
Publie Availability / Rates / Restrictions (ARI) vers Booking.com via Channex
Body (exemples simplifiés): { "availability": [ { ... } ], "rates": [ { ... } ] }
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/booking/properties/consequatur/publish-ari" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/booking/properties/consequatur/publish-ari"
);
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.
Récupère le statut de la connexion Booking.com pour une propriété
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/booking/properties/consequatur/status" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/booking/properties/consequatur/status"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Créer/mettre à jour la connexion Trip.com pour une propriété POST /trip/properties/{propertyId}/connect
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/trip/properties/consequatur/connect" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"hotel_code\": \"consequatur\",
\"group_id\": \"98adc52b-966d-39db-809a-55902ee7228f\",
\"title\": \"consequatur\",
\"is_active\": false
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/trip/properties/consequatur/connect"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"hotel_code": "consequatur",
"group_id": "98adc52b-966d-39db-809a-55902ee7228f",
"title": "consequatur",
"is_active": 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.
Mapper Room Types / Rate Plans POST /trip/properties/{propertyId}/map
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/trip/properties/consequatur/map" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"connection_id\": \"66529e01-d113-3473-8d6f-9e11e09332ea\",
\"mappings\": [
{
\"rate_plan_id\": \"66529e01-d113-3473-8d6f-9e11e09332ea\",
\"rate_plan_code\": \"consequatur\",
\"room_type_code\": \"consequatur\",
\"occupancy\": 17,
\"primary_occ\": true
}
]
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/trip/properties/consequatur/map"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"connection_id": "66529e01-d113-3473-8d6f-9e11e09332ea",
"mappings": [
{
"rate_plan_id": "66529e01-d113-3473-8d6f-9e11e09332ea",
"rate_plan_code": "consequatur",
"room_type_code": "consequatur",
"occupancy": 17,
"primary_occ": 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.
Publier ARI (Availability, Rates, Inventory) POST /trip/properties/{propertyId}/publish-ari
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/trip/properties/consequatur/publish-ari" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"connection_id\": \"66529e01-d113-3473-8d6f-9e11e09332ea\",
\"start_date\": \"2025-12-19T17:33:03\",
\"end_date\": \"2107-01-18\",
\"room_types\": []
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/trip/properties/consequatur/publish-ari"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"connection_id": "66529e01-d113-3473-8d6f-9e11e09332ea",
"start_date": "2025-12-19T17:33:03",
"end_date": "2107-01-18",
"room_types": []
};
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.
Statut de la connexion GET /trip/properties/{propertyId}/status
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/trip/properties/consequatur/status" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/trip/properties/consequatur/status"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Créer/mettre à jour la connexion Hopper's Home pour une propriété POST /api/v1/hopper-homes/properties/{propertyId}/connect
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/hopper-homes/properties/consequatur/connect" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"host_email\": \"qkunze@example.com\",
\"host_name\": \"opfuudtdsufvyvddqamni\",
\"auto_publish\": true
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/hopper-homes/properties/consequatur/connect"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"host_email": "qkunze@example.com",
"host_name": "opfuudtdsufvyvddqamni",
"auto_publish": 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.
Créer/éditer le listing sur Hopper's Home POST /api/v1/hopper-homes/properties/{propertyId}/listings
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/hopper-homes/properties/consequatur/listings" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/hopper-homes/properties/consequatur/listings"
);
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.
Configurer la tarification sur Hopper's Home POST /api/v1/hopper-homes/properties/{propertyId}/pricing
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/hopper-homes/properties/consequatur/pricing" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"nightly_price\": 73,
\"currency\": \"USD\",
\"cancellation_policy\": \"moderate\",
\"cleaning_fee\": 45,
\"additional_guest_fee\": 56
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/hopper-homes/properties/consequatur/pricing"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"nightly_price": 73,
"currency": "USD",
"cancellation_policy": "moderate",
"cleaning_fee": 45,
"additional_guest_fee": 56
};
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.
Configurer les règles de disponibilité POST /api/v1/hopper-homes/properties/{propertyId}/availability-rules
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/hopper-homes/properties/consequatur/availability-rules" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"min_stay\": 73,
\"max_stay\": 45,
\"check_in_days\": [
\"wed\"
],
\"min_lead_time_hours\": 56,
\"max_lead_time_days\": 17
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/hopper-homes/properties/consequatur/availability-rules"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"min_stay": 73,
"max_stay": 45,
"check_in_days": [
"wed"
],
"min_lead_time_hours": 56,
"max_lead_time_days": 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.
Activer/désactiver le listing POST /api/v1/hopper-homes/properties/{propertyId}/listings/{listingId}/status
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/hopper-homes/properties/consequatur/listings/consequatur/status" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"status\": \"archived\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/hopper-homes/properties/consequatur/listings/consequatur/status"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"status": "archived"
};
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.
Statut de la connexion Hopper's Home GET /api/v1/hopper-homes/properties/{propertyId}/status
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/hopper-homes/properties/consequatur/status" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/hopper-homes/properties/consequatur/status"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/ota/google-hotel-ads/google-hotel-ads
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/google-hotel-ads/google-hotel-ads" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/google-hotel-ads/google-hotel-ads"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/ota/google-hotel-ads/google-hotel-ads
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/google-hotel-ads/google-hotel-ads" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"vmqeopfuudtdsufvyvddq\",
\"group_id\": \"462ee709-6d9f-345a-95e6-76f833111fb8\",
\"properties\": [
\"1915c795-5d1c-3def-965b-5abe034dd150\"
],
\"booking_link\": \"http:\\/\\/www.grady.com\\/aspernatur-natus-earum-quas-dignissimos-perferendis-voluptatibus\",
\"bathrooms_count\": 21,
\"bedrooms_count\": 26,
\"beds_count\": 12,
\"rate_plans\": [
{
\"rate_plan_id\": \"256a184d-8b0c-30c1-bc2a-067c1083249f\"
}
]
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/google-hotel-ads/google-hotel-ads"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "vmqeopfuudtdsufvyvddq",
"group_id": "462ee709-6d9f-345a-95e6-76f833111fb8",
"properties": [
"1915c795-5d1c-3def-965b-5abe034dd150"
],
"booking_link": "http:\/\/www.grady.com\/aspernatur-natus-earum-quas-dignissimos-perferendis-voluptatibus",
"bathrooms_count": 21,
"bedrooms_count": 26,
"beds_count": 12,
"rate_plans": [
{
"rate_plan_id": "256a184d-8b0c-30c1-bc2a-067c1083249f"
}
]
};
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/v1/ota/google-hotel-ads/google-hotel-ads/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/google-hotel-ads/google-hotel-ads/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"vmqeopfuudtdsufvyvddq\",
\"group_id\": \"462ee709-6d9f-345a-95e6-76f833111fb8\",
\"properties\": [
\"1915c795-5d1c-3def-965b-5abe034dd150\"
],
\"booking_link\": \"http:\\/\\/www.grady.com\\/aspernatur-natus-earum-quas-dignissimos-perferendis-voluptatibus\",
\"bathrooms_count\": 21,
\"bedrooms_count\": 26,
\"beds_count\": 12,
\"is_active\": false,
\"rate_plans\": [
{
\"rate_plan_id\": \"256a184d-8b0c-30c1-bc2a-067c1083249f\"
}
]
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/google-hotel-ads/google-hotel-ads/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "vmqeopfuudtdsufvyvddq",
"group_id": "462ee709-6d9f-345a-95e6-76f833111fb8",
"properties": [
"1915c795-5d1c-3def-965b-5abe034dd150"
],
"booking_link": "http:\/\/www.grady.com\/aspernatur-natus-earum-quas-dignissimos-perferendis-voluptatibus",
"bathrooms_count": 21,
"bedrooms_count": 26,
"beds_count": 12,
"is_active": false,
"rate_plans": [
{
"rate_plan_id": "256a184d-8b0c-30c1-bc2a-067c1083249f"
}
]
};
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/v1/ota/google-hotel-ads/google-hotel-ads/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/google-hotel-ads/google-hotel-ads/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/google-hotel-ads/google-hotel-ads/consequatur"
);
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/v1/ota/expedia/expedia
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/expedia/expedia" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/expedia/expedia"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/ota/expedia/expedia
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/expedia/expedia" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"consequatur\",
\"group_id\": \"98adc52b-966d-39db-809a-55902ee7228f\",
\"property_id\": \"d48a46b6-3a18-3763-951d-66b7fdb284ae\",
\"hotel_id\": \"consequatur\",
\"min_stay_type\": \"Through\",
\"rate_plans\": [
{
\"rate_plan_id\": \"66529e01-d113-3473-8d6f-9e11e09332ea\",
\"settings\": {
\"rate_plan_code\": 17,
\"room_type_code\": 17,
\"occupancy\": 17,
\"pricing_type\": \"consequatur\",
\"primary_occ\": true
}
}
]
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/expedia/expedia"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "consequatur",
"group_id": "98adc52b-966d-39db-809a-55902ee7228f",
"property_id": "d48a46b6-3a18-3763-951d-66b7fdb284ae",
"hotel_id": "consequatur",
"min_stay_type": "Through",
"rate_plans": [
{
"rate_plan_id": "66529e01-d113-3473-8d6f-9e11e09332ea",
"settings": {
"rate_plan_code": 17,
"room_type_code": 17,
"occupancy": 17,
"pricing_type": "consequatur",
"primary_occ": 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.
PUT api/v1/ota/expedia/expedia/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/expedia/expedia/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"consequatur\",
\"group_id\": \"98adc52b-966d-39db-809a-55902ee7228f\",
\"property_id\": \"d48a46b6-3a18-3763-951d-66b7fdb284ae\",
\"hotel_id\": \"consequatur\",
\"min_stay_type\": \"Through\",
\"is_active\": false,
\"rate_plans\": [
{
\"rate_plan_id\": \"66529e01-d113-3473-8d6f-9e11e09332ea\",
\"settings\": {
\"rate_plan_code\": 17,
\"room_type_code\": 17,
\"occupancy\": 17,
\"pricing_type\": \"consequatur\",
\"primary_occ\": false
}
}
]
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/expedia/expedia/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "consequatur",
"group_id": "98adc52b-966d-39db-809a-55902ee7228f",
"property_id": "d48a46b6-3a18-3763-951d-66b7fdb284ae",
"hotel_id": "consequatur",
"min_stay_type": "Through",
"is_active": false,
"rate_plans": [
{
"rate_plan_id": "66529e01-d113-3473-8d6f-9e11e09332ea",
"settings": {
"rate_plan_code": 17,
"room_type_code": 17,
"occupancy": 17,
"pricing_type": "consequatur",
"primary_occ": 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.
DELETE api/v1/ota/expedia/expedia/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/expedia/expedia/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/expedia/expedia/consequatur"
);
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/v1/ota/expedia/test-connection
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/expedia/test-connection" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"hotel_id\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/expedia/test-connection"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"hotel_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.
POST api/v1/ota/expedia/mapping-details
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/expedia/mapping-details" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"hotel_id\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/expedia/mapping-details"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"hotel_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.
POST api/v1/ota/expedia/connection-details
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/expedia/connection-details" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"hotel_id\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/ota/expedia/connection-details"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"hotel_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.
Récupère le mapping OTA pour Agoda.
POST /api/v1/agoda/map/agoda Body: { "hotel_id": "xxxx" }
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/agoda/map/agoda" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/agoda/map/agoda"
);
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.
Crée le channel Agoda sur Channex pour une propriété donnée.
POST /api/v1/agoda/create/channel Body: { "group_id": "...", "property_id": "...", "hotel_id": "...", "rate_plans": [...] }
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/agoda/create/channel" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/agoda/create/channel"
);
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.
Récupère les détails de connexion Agoda via Channex.
POST /api/v1/agoda/connection-details Body: { "hotel_id": "xxxx" }
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/agoda/connection-details" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/agoda/connection-details"
);
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.
Récupère le mapping OTA pour Agoda.
POST /api/v1/agoda/map/agoda Body: { "hotel_id": "xxxx" }
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/traveloka/map/traveloka" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/traveloka/map/traveloka"
);
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.
Crée le channel Agoda sur Channex pour une propriété donnée.
POST /api/v1/agoda/create/channel Body: { "group_id": "...", "property_id": "...", "hotel_id": "...", "rate_plans": [...] }
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/traveloka/create/channel" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/traveloka/create/channel"
);
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.
roomTypesOptions - Ces deux endpoints attendent un paramètre de query filter[property_id].
- Ils redirigent vers le service qui interroge les endpoints options de Channex.
- Renvoient 422 si filter.property_id manquant, 500 en cas d'erreur serveur.
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/traveloka/room-types" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/traveloka/room-types"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
ratePlansOptions : - Ces deux endpoints attendent un paramètre de query filter[property_id].
- Ils redirigent vers le service qui interroge les endpoints options de Channex.
- Renvoient 422 si filter.property_id manquant, 500 en cas d'erreur serveur.
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/traveloka/rate-plans" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/traveloka/rate-plans"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/currencies
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/currencies" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/currencies"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/currencies/convert
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/currencies/convert" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"amount\": 73,
\"from\": \"consequatur\",
\"to\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/currencies/convert"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"amount": 73,
"from": "consequatur",
"to": "consequatur"
};
fetch(url, {
method: "GET",
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/v1/currencies/convert-by-id
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/currencies/convert-by-id" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"amount\": 73,
\"from_id\": 17,
\"to_id\": 17
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/currencies/convert-by-id"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"amount": 73,
"from_id": 17,
"to_id": 17
};
fetch(url, {
method: "GET",
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/v1/currencies/exchange-rate
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/currencies/exchange-rate" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"fromCode\": \"consequatur\",
\"toCode\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/currencies/exchange-rate"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"fromCode": "consequatur",
"toCode": "consequatur"
};
fetch(url, {
method: "GET",
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/v1/currencies/default-currency
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/currencies/default-currency" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/currencies/default-currency"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/currencies/active-currency
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/currencies/active-currency" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/currencies/active-currency"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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/v1/currencies/set-default
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/currencies/set-default" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"currency_code\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/currencies/set-default"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"currency_code": "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/v1/currencies/update-rates
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/currencies/update-rates" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/currencies/update-rates"
);
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/v1/currencies/toggle-status
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/currencies/toggle-status" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"currency_code\": \"consequatur\",
\"is_active\": false
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/currencies/toggle-status"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"currency_code": "consequatur",
"is_active": 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.
GET api/v1/document_shared_mail
Liste toutes les catégories avec leurs templates GET /api/notifications/categories
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail-notifications/categories" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail-notifications/categories"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Liste les templates d'une catégorie avec leurs configurations GET /api/notifications/categories/{categorySlug}/templates
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail-notifications/categories/consequatur/templates" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail-notifications/categories/consequatur/templates"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Récupère les détails d'un template spécifique GET /api/notifications/templates/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail-notifications/templates/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail-notifications/templates/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Active/Désactive un template PATCH /api/notifications/templates/{id}/toggle
Example request:
curl --request PATCH \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail-notifications/templates/consequatur/toggle" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail-notifications/templates/consequatur/toggle"
);
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.
Liste les placeholders disponibles pour un template GET /api/notifications/templates/{id}/placeholders
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail-notifications/templates/consequatur/placeholders" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail-notifications/templates/consequatur/placeholders"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Historique des notifications envoyées GET /api/notifications/sent
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail-notifications/sent" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail-notifications/sent"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Détails d'une notification envoyée GET /api/notifications/sent/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail-notifications/sent/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail-notifications/sent/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Renvoyer une notification échouée POST /api/notifications/sent/{id}/retry
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail-notifications/sent/consequatur/retry" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail-notifications/sent/consequatur/retry"
);
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.
Statistiques des notifications GET /api/notifications/stats
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail-notifications/stats" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/mail-notifications/stats"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Liste tous les documents disponibles
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/documents" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/documents"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Récupère les informations d'un document spécifique
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/documents/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/documents/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Génère la configuration pour l'éditeur OnlyOffice (pour iframe)
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/onlyoffice/editor" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"file_url\": \"http:\\/\\/kunze.biz\\/iste-laborum-eius-est-dolor.html\",
\"mode\": \"view\",
\"document_id\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/onlyoffice/editor"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"file_url": "http:\/\/kunze.biz\/iste-laborum-eius-est-dolor.html",
"mode": "view",
"document_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.
Génère une URL complète pour l'iframe OnlyOffice
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/onlyoffice/iframe" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"file_url\": \"http:\\/\\/kunze.biz\\/iste-laborum-eius-est-dolor.html\",
\"mode\": \"edit\",
\"document_id\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/onlyoffice/iframe"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"file_url": "http:\/\/kunze.biz\/iste-laborum-eius-est-dolor.html",
"mode": "edit",
"document_id": "consequatur"
};
fetch(url, {
method: "GET",
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.
Proxy pour le script OnlyOffice (évite les problèmes CORS)
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/onlyoffice/script" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/onlyoffice/script"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Callback OnlyOffice pour recevoir les modifications du document
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/onlyoffice/callback" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/onlyoffice/callback"
);
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.
Servir les documents du dossier public/document_pdf Cette route permet à OnlyOffice d'accéder aux documents
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/document_pdf/2UZ5i" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/document_pdf/2UZ5i"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Ouvrir un document partagé via un lien public dans OnlyOffice.
GET /api/v1/documents/share/{token}
Créer un compte Nextcloud pour l'utilisateur connecté
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/account/create" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/account/create"
);
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.
Obtenir les informations du compte Nextcloud
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/account" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/account"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Obtenir les informations d'authentification pour se connecter à Nextcloud
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/account/credentials" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/account/credentials"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Créer un dossier dans Nextcloud
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/folder" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"folder_name\": \"vmqeopfuudtdsufvyvddq\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/folder"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"folder_name": "vmqeopfuudtdsufvyvddq"
};
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.
Upload un fichier vers Nextcloud
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/upload" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "path=consequatur"\
--form "file=@C:\Users\fgh\AppData\Local\Temp\php4160.tmp" const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/upload"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('path', 'consequatur');
body.append('file', document.querySelector('input[name="file"]').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.
Créer un lien de partage public
Redirection vers Nextcloud avec auto-login (nouvel onglet)
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/redirect" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/redirect"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
⭐ NOUVELLE API : Générer un lien d'accès unique
POST /api/v1/nextcloud/generate-link
Retourne un lien que le frontend peut utiliser Le client clique sur ce lien et est redirigé vers Nextcloud
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/generate-link" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/generate-link"
);
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.
Lister les documents Nextcloud de l'utilisateur
GET /api/v1/nextcloud/documents
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/documents" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/documents"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Ouvrir un document dans OnlyOffice
POST /api/v1/nextcloud/documents/open Body: { "file_path": "/Documents/fichier.docx" }
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/documents/open" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"file_path\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/documents/open"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"file_path": "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.
Générer une page HTML avec OnlyOffice intégré
GET /api/v1/nextcloud/documents/editor?file_path=/Documents/fichier.docx
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/documents/editor" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"file_path\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/documents/editor"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"file_path": "consequatur"
};
fetch(url, {
method: "GET",
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.
Callback OnlyOffice pour la sauvegarde
POST /api/v1/nextcloud/documents/callback
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/documents/callback" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/documents/callback"
);
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.
Endpoint UserInfo pour OAuth2/OIDC
GET /oauth/userinfo
Retourne les informations de l'utilisateur authentifié
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/oauth/userinfo" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/oauth/userinfo"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
⭐ Redirection SSO vers Nextcloud (OAuth2)
GET /api/v1/nextcloud/sso-redirect
Redirige l'utilisateur vers Nextcloud avec authentification SSO automatique
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/sso-redirect" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/nextcloud/sso-redirect"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Endpoint Discovery pour OpenID Connect
GET /.well-known/openid-configuration
Retourne la configuration OIDC du serveur
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/.well-known/openid-configuration" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/.well-known/openid-configuration"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Endpoint JWKS (JSON Web Key Set)
GET /oauth/jwks
Retourne les clés publiques pour vérifier les JWT
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/oauth/jwks" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/oauth/jwks"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Récupérer les filtres disponibles (Public) GET /api/v1/job-offers/filters
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/job-offers/filters" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/job-offers/filters"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Liste des offres d'emploi (Public) GET /api/v1/job-offers
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/job-offers" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/job-offers"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Détails d'une offre d'emploi (Public) GET /api/v1/job-offers/{id}
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/job-offers/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/job-offers/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Créer une offre d'emploi (Admin) POST /api/v1/job-offers
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/job-offers" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"vmqeopfuudtdsufvyvddq\",
\"department\": \"amniihfqcoynlazghdtqt\",
\"location\": \"qxbajwbpilpmufinllwlo\",
\"type\": \"auydlsmsjuryvojcybzvr\",
\"experience\": \"byickznkygloigmkwxphl\",
\"salary\": \"vazjrcnfbaqywuxhgjjmz\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"full_description\": \"consequatur\",
\"responsibilities\": [
\"consequatur\"
],
\"requirements\": [
\"consequatur\"
],
\"benefits\": [
\"consequatur\"
],
\"contact_email\": \"carolyne.luettgen@example.org\",
\"contact_phone\": \"fuudtdsufvyvddqamniih\",
\"contact_name\": \"fqcoynlazghdtqtqxbajw\",
\"is_active\": false,
\"expires_at\": \"2025-12-19T17:33:04\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/job-offers"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "vmqeopfuudtdsufvyvddq",
"department": "amniihfqcoynlazghdtqt",
"location": "qxbajwbpilpmufinllwlo",
"type": "auydlsmsjuryvojcybzvr",
"experience": "byickznkygloigmkwxphl",
"salary": "vazjrcnfbaqywuxhgjjmz",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"full_description": "consequatur",
"responsibilities": [
"consequatur"
],
"requirements": [
"consequatur"
],
"benefits": [
"consequatur"
],
"contact_email": "carolyne.luettgen@example.org",
"contact_phone": "fuudtdsufvyvddqamniih",
"contact_name": "fqcoynlazghdtqtqxbajw",
"is_active": false,
"expires_at": "2025-12-19T17:33:04"
};
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.
Modifier une offre d'emploi (Admin) PUT /api/v1/job-offers/{id}
Example request:
curl --request PUT \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/job-offers/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"vmqeopfuudtdsufvyvddq\",
\"department\": \"amniihfqcoynlazghdtqt\",
\"location\": \"qxbajwbpilpmufinllwlo\",
\"type\": \"auydlsmsjuryvojcybzvr\",
\"experience\": \"byickznkygloigmkwxphl\",
\"salary\": \"vazjrcnfbaqywuxhgjjmz\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"full_description\": \"consequatur\",
\"responsibilities\": [
\"consequatur\"
],
\"requirements\": [
\"consequatur\"
],
\"benefits\": [
\"consequatur\"
],
\"contact_email\": \"carolyne.luettgen@example.org\",
\"contact_phone\": \"fuudtdsufvyvddqamniih\",
\"contact_name\": \"fqcoynlazghdtqtqxbajw\",
\"is_new\": false,
\"is_active\": true,
\"expires_at\": \"2025-12-19T17:33:04\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/job-offers/consequatur"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "vmqeopfuudtdsufvyvddq",
"department": "amniihfqcoynlazghdtqt",
"location": "qxbajwbpilpmufinllwlo",
"type": "auydlsmsjuryvojcybzvr",
"experience": "byickznkygloigmkwxphl",
"salary": "vazjrcnfbaqywuxhgjjmz",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"full_description": "consequatur",
"responsibilities": [
"consequatur"
],
"requirements": [
"consequatur"
],
"benefits": [
"consequatur"
],
"contact_email": "carolyne.luettgen@example.org",
"contact_phone": "fuudtdsufvyvddqamniih",
"contact_name": "fqcoynlazghdtqtqxbajw",
"is_new": false,
"is_active": true,
"expires_at": "2025-12-19T17:33:04"
};
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.
Supprimer une offre d'emploi (Admin) DELETE /api/v1/job-offers/{id}
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/job-offers/consequatur" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/job-offers/consequatur"
);
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.
Paiements
Mini description: Liste paginée des paiements avec filtres (statut, mois, année, propriété) et regroupement par propriété.
requires authentication
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments" \
--header "Authorization: Bearer Bearer {YOUR_JWT_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments"
);
const headers = {
"Authorization": "Bearer Bearer {YOUR_JWT_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"success": true,
"data": {
"current_page": 1,
"data": [
{
"id": 101,
"status": "completed",
"reservation": {
"id": 45,
"property": {
"id": 12,
"public_name": "Villa Océane"
}
}
}
],
"per_page": 20,
"total": 1
}
}
Example response (403):
{
"success": false,
"message": "Accès non autorisé."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Mini description: Détails d’un paiement (montant, statut, réservation, propriété, utilisateur).
requires authentication
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/17" \
--header "Authorization: Bearer Bearer {YOUR_JWT_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/payments/17"
);
const headers = {
"Authorization": "Bearer Bearer {YOUR_JWT_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"id": 101,
"amount": 500,
"status": "paid",
"reservation": {
"id": 45,
"property": {
"id": 12,
"public_name": "Villa Océane"
},
"user": {
"id": 7,
"name": "John Doe",
"email": "john@example.com"
}
}
}
Example response (403):
{
"success": false,
"message": "Accès refusé"
}
Example response (404):
{
"success": false,
"message": "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.
Propriétés
Mini description: Liste paginée des propriétés avec filtres et indicateur de disponibilité.
Mini description: Propriétés recommandées selon le rôle et options de disponibilité.
requires authentication
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/recommended" \
--header "Authorization: Bearer Bearer {YOUR_JWT_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/recommended"
);
const headers = {
"Authorization": "Bearer Bearer {YOUR_JWT_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"message": "Properties retrieved successfully",
"data": {
"data": [
{
"id": 1,
"public_name": "Villa",
"total_comments": 0
}
]
}
}
Example response (401):
{"error":"Unauthorized"}
Récupère une liste paginée de propriétés recommandées pour l'utilisateur authentifié.
- Si l'utilisateur a le rôle "admin_proprio", seules ses propriétés recommandées actives sont retournées.
- Sinon, toutes les propriétés recommandées actives sont retournées.
- Les propriétés incluent leurs médias et commodités associés.
- Pour chaque propriété, la disponibilité (réservée ou non) est calculée selon les dates fournies.
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Mini description: Liste paginée des propriétés de l'utilisateur synchronisées avec Channex.
requires authentication
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/synced" \
--header "Authorization: Bearer Bearer {YOUR_JWT_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/synced"
);
const headers = {
"Authorization": "Bearer Bearer {YOUR_JWT_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Mini description: Détails complets d’une propriété (relations, dates réservées, propriétaire).
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/17" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/17"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"message": "Property retrieved successfully",
"data": {
"id": 12,
"public_name": "Villa Océane",
"reserved_dates": [],
"total_comments": 0
}
}
Example response (404):
{
"error": "Property not found"
}
Example response (500):
{
"error": "Failed to retrieve property"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
} } } ) ),
@OA\Response( response=500, description="Server error",
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
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.
Réservations
GET api/v1/reservations/reservations-by-properties
requires authentication
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/reservations-by-properties" \
--header "Authorization: Bearer Bearer {YOUR_JWT_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations/reservations-by-properties"
);
const headers = {
"Authorization": "Bearer Bearer {YOUR_JWT_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"success": true,
"data": {
"current_page": 1,
"data": []
},
"message": "Reservations retrieved successfully"
}
Example response (500):
{
"success": false,
"message": "Failed to retrieve reservations"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/v1/reservations
requires authentication
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations" \
--header "Authorization: Bearer Bearer {YOUR_JWT_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations"
);
const headers = {
"Authorization": "Bearer Bearer {YOUR_JWT_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"success": true,
"data": {
"current_page": 1,
"data": []
},
"message": "Reservations retrieved successfully"
}
Example response (500):
{
"success": false,
"message": "Failed to retrieve reservations"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/v1/reservations
requires authentication
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations" \
--header "Authorization: Bearer Bearer {YOUR_JWT_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"property_id\": 17,
\"checkin_date\": \"consequatur\",
\"checkout_date\": \"consequatur\",
\"guests\": [
\"consequatur\"
],
\"status\": \"consequatur\",
\"rooms\": [
{
\"rooms_count\": 73
}
],
\"promo_code\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/reservations"
);
const headers = {
"Authorization": "Bearer Bearer {YOUR_JWT_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"property_id": 17,
"checkin_date": "consequatur",
"checkout_date": "consequatur",
"guests": [
"consequatur"
],
"status": "consequatur",
"rooms": [
{
"rooms_count": 73
}
],
"promo_code": "consequatur"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (201):
{
"success": true,
"data": {
"reservation": {
"id": 1
},
"total_price": 750
},
"message": "Reservation created successfully"
}
Example response (400):
{
"success": false,
"message": "Validation Error",
"data": {
"property_id": [
"The property id field is required."
]
}
}
Example response (404):
{
"success": false,
"message": "Property not found"
}
Example response (409):
{
"success": false,
"message": "La propriété est déjà réservée sur cette période"
}
Example response (500):
{
"success": false,
"message": "Failed to create reservation"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Smart Locks
POST api/v1/properties/{propertyId}/smart-lock/configure
requires authentication
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/17/smart-lock/configure" \
--header "Authorization: Bearer Bearer {YOUR_JWT_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"smart_lock_provider_id\": 17,
\"smart_lock_id\": 17,
\"smart_lock_config\": [],
\"smart_lock_status\": \"consequatur\"
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/17/smart-lock/configure"
);
const headers = {
"Authorization": "Bearer Bearer {YOUR_JWT_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"smart_lock_provider_id": 17,
"smart_lock_id": 17,
"smart_lock_config": [],
"smart_lock_status": "consequatur"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"success": true,
"data": {
"id": 12,
"smart_lock_status": "active"
},
"message": "Serrure smart lock configurée avec succès"
}
Example response (403):
{
"success": false,
"message": "Vous n'êtes pas autorisé à configurer cette propriété"
}
Example response (422):
{
"success": false,
"message": "Validation failed"
}
Example response (500):
{
"success": false,
"message": "Erreur lors de la configuration de la serrure"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/v1/properties/{propertyId}/smart-lock/info
requires authentication
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/17/smart-lock/info" \
--header "Authorization: Bearer Bearer {YOUR_JWT_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/17/smart-lock/info"
);
const headers = {
"Authorization": "Bearer Bearer {YOUR_JWT_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"success": true,
"data": {
"has_smart_lock": true,
"status": "active"
},
"message": "Informations de la serrure smart lock récupérées"
}
Example response (403):
{
"success": false,
"message": "Vous n'êtes pas autorisé à voir cette propriété"
}
Example response (404):
{
"success": false,
"message": "Property not found"
}
Example response (500):
{
"success": false,
"message": "Erreur lors de la récupération des informations"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/v1/properties/{propertyId}/smart-lock/access-codes
requires authentication
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/17/smart-lock/access-codes" \
--header "Authorization: Bearer Bearer {YOUR_JWT_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/17/smart-lock/access-codes"
);
const headers = {
"Authorization": "Bearer Bearer {YOUR_JWT_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"success": true,
"data": [
{
"code": "123456",
"valid_from": "2025-08-01T09:00:00Z"
}
],
"message": "Codes d'accès actifs récupérés"
}
Example response (403):
{
"success": false,
"message": "Accès non autorisé"
}
Example response (404):
{
"success": false,
"message": "Property not found"
}
Example response (500):
{
"success": false,
"message": "Erreur lors de la récupération des codes d'accès"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/v1/properties/{propertyId}/smart-lock/access-codes/history
requires authentication
Example request:
curl --request GET \
--get "http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/17/smart-lock/access-codes/history" \
--header "Authorization: Bearer Bearer {YOUR_JWT_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/properties/17/smart-lock/access-codes/history"
);
const headers = {
"Authorization": "Bearer Bearer {YOUR_JWT_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"message": "Historique des codes d'accès récupéré",
"data": []
}
Example response (401):
{
"error": "Unauthorized"
}
Example response (403):
{
"error": "Accès non autorisé"
}
Example response (404):
{
"error": "Property not found"
}
Example response (500):
{
"error": "Erreur lors de la récupération de l'historique"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Tâches
POST api/v1/tasks/{task}/assign-users
requires authentication
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/tasks/17/assign-users" \
--header "Authorization: Bearer Bearer {YOUR_JWT_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"user_ids\": [
\"consequatur\"
]
}"
const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/tasks/17/assign-users"
);
const headers = {
"Authorization": "Bearer Bearer {YOUR_JWT_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"user_ids": [
"consequatur"
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (200):
{
"success": true,
"message": "Users assigned to task successfully",
"data": {
"id": 1,
"title": "Nouvelle tâche",
"users": [
{
"id": 1,
"name": "Jean Dupont",
"email": "jean@example.com"
},
{
"id": 2,
"name": "Marie Curie",
"email": "marie@example.com"
}
]
}
}
Example response (400):
{
"success": false,
"message": "Validation error",
"data": {
"user_ids": [
"The selected user_ids.1 is invalid."
]
}
}
Example response (404):
{
"success": false,
"message": "Task not found"
}
Example response (500):
{
"success": false,
"message": "Failed to assign users to task"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Utilisateur
POST api/v1/user/update
requires authentication
Example request:
curl --request POST \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/update" \
--header "Authorization: Bearer Bearer {YOUR_JWT_TOKEN}" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "username=consequatur"\
--form "first_name=consequatur"\
--form "last_name=consequatur"\
--form "job=consequatur"\
--form "location=consequatur"\
--form "phone=consequatur"\
--form "email=qkunze@example.com"\
--form "password=O[2UZ5ij-e/dl4m{o,"\
--form "password_confirmation=consequatur"\
--form "avatar=@C:\Users\fgh\AppData\Local\Temp\php31B9.tmp" const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/update"
);
const headers = {
"Authorization": "Bearer Bearer {YOUR_JWT_TOKEN}",
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('username', 'consequatur');
body.append('first_name', 'consequatur');
body.append('last_name', 'consequatur');
body.append('job', 'consequatur');
body.append('location', 'consequatur');
body.append('phone', 'consequatur');
body.append('email', 'qkunze@example.com');
body.append('password', 'O[2UZ5ij-e/dl4m{o,');
body.append('password_confirmation', 'consequatur');
body.append('avatar', document.querySelector('input[name="avatar"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Example response (200):
{
"success": true,
"data": {
"id": 1,
"username": "john_doe"
},
"message": "User informations updated successfully"
}
Example response (400):
{
"success": false,
"message": "Require fields error",
"data": {
"email": [
"The email has already been taken."
]
}
}
Example response (500):
{
"success": false,
"message": "Failed to update user"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/v1/user/delete
requires authentication
Example request:
curl --request DELETE \
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/delete" \
--header "Authorization: Bearer Bearer {YOUR_JWT_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me/api/v1/user/delete"
);
const headers = {
"Authorization": "Bearer Bearer {YOUR_JWT_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Example response (200):
{
"success": true,
"data": null,
"message": "Utilisateur supprimé avec succès"
}
Example response (500):
{
"success": false,
"message": "Erreur lors de la suppression"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.