{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "http:\/\/imobiznets-backend-prod-yxxo2i-fecde5-136-112-175-192.traefik.me"
        }
    ],
    "info": {
        "name": "Imobiznets Inc. API Documentation",
        "_postman_id": "0cff2def-6c79-4c56-b12b-24b54e66de50",
        "description": "",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "Abonnements",
            "description": "",
            "item": [
                {
                    "name": "Liste les plans d'abonnement actifs (pour les propri\u00e9taires)\nGET \/api\/v1\/subscription-plans",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscription-plans",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscription-plans"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": [\n    {\n      \"id\": 1,\n      \"slug\": \"pro\",\n      \"name\": \"Professionnel\",\n      \"monthly_price\": 4500,\n      \"formatted_price\": \"45.00$\"\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Calcule le prix d'un plan selon le nombre de propri\u00e9t\u00e9s et la devise\nPOST \/api\/v1\/subscription-plans\/calculate-price",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscription-plans\/calculate-price",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscription-plans\/calculate-price"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"plan_slug\":\"pro\",\"properties_count\":5,\"billing_period\":\"monthly\",\"currency\":\"USD\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"plan\": {\"slug\": \"pro\", \"name\": \"Professionnel\"},\n    \"properties_count\": 5,\n    \"billing_period\": \"monthly\",\n    \"currency\": \"USD\",\n    \"monthly_price\": 4500,\n    \"total_price\": 4500,\n    \"savings\": 0\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "R\u00e9cup\u00e8re l'abonnement actuel de l'utilisateur\nGET \/api\/v1\/subscriptions\/current",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscriptions\/current",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscriptions\/current"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"has_subscription\": true,\n    \"subscription\": {\n      \"id\": 1,\n      \"status\": \"active\",\n      \"billing_period\": \"monthly\",\n      \"properties_count\": 5,\n      \"monthly_price\": 4500,\n      \"days_remaining\": 25\n    },\n    \"plan\": {\n      \"slug\": \"pro\",\n      \"name\": \"Professionnel\"\n    }\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "V\u00e9rifie si l'utilisateur a acc\u00e8s \u00e0 une fonctionnalit\u00e9\nGET \/api\/v1\/subscriptions\/check-feature\/{feature}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscriptions\/check-feature\/:feature",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscriptions\/check-feature\/:feature",
                            "variable": [
                                {
                                    "id": "feature",
                                    "key": "feature",
                                    "value": "crm_integration",
                                    "description": "Code de la fonctionnalit\u00e9."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"has_access\": true,\n    \"feature\": \"crm_integration\",\n    \"plan\": \"Professionnel\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Cr\u00e9e une session Stripe Checkout pour souscrire \u00e0 un plan\nPOST \/api\/v1\/subscriptions\/checkout",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscriptions\/checkout",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscriptions\/checkout"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"plan_slug\":\"pro\",\"billing_period\":\"monthly\",\"properties_count\":5,\"currency\":\"USD\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"checkout_url\": \"https:\/\/checkout.stripe.com\/...\",\n    \"session_id\": \"cs_test_...\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Vous avez d\u00e9j\u00e0 un abonnement actif...\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Annule l'abonnement actuel\nPOST \/api\/v1\/subscriptions\/cancel",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscriptions\/cancel",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscriptions\/cancel"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"reason\":\"Changement de strat\u00e9gie\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Abonnement annul\u00e9. Acc\u00e8s conserv\u00e9 jusqu'au 31\/12\/2024\",\n  \"data\": {\n    \"end_date\": \"2024-12-31T23:59:59.000000Z\",\n    \"days_remaining\": 15\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Aucun abonnement actif\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Historique des factures\nGET \/api\/v1\/subscriptions\/invoices",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscriptions\/invoices",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscriptions\/invoices"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": [\n    {\n      \"id\": 1,\n      \"invoice_number\": \"INV-2024-00001\",\n      \"amount_formatted\": \"45.00 USD\",\n      \"status\": \"paid\",\n      \"period_start\": \"2024-01-01T00:00:00.000000Z\",\n      \"plan_name\": \"Professionnel\"\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Abonnements Admin",
            "description": "",
            "item": [
                {
                    "name": "Liste tous les plans (actifs et inactifs) pour l'admin\nGET \/api\/v1\/subscription-plans\/admin",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscription-plans\/admin",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscription-plans\/admin"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": [\n    {\n      \"id\": 1,\n      \"slug\": \"pro\",\n      \"name\": \"Professionnel\",\n      \"is_active\": true,\n      \"base_price_monthly\": 4500\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Liste tous les abonnements (pour l'admin)\nGET \/api\/v1\/subscriptions\/admin\/all",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscriptions\/admin\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscriptions\/admin\/all"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": [\n    {\n      \"id\": 1,\n      \"user\": {\"name\": \"John Doe\"},\n      \"plan\": {\"name\": \"Professionnel\"},\n      \"status\": \"active\",\n      \"monthly_price\": 4500\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Statistiques des abonnements pour les administrateurs\nGET \/api\/v1\/subscriptions\/admin\/statistics",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscriptions\/admin\/statistics",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscriptions\/admin\/statistics"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"total_subscriptions\": 150,\n    \"active_subscriptions\": 120,\n    \"monthly_revenue\": 5400.00,\n    \"yearly_revenue\": 64800.00,\n    \"plans_distribution\": {\n      \"pro\": 80,\n      \"business\": 35,\n      \"enterprise\": 5\n    }\n  }\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Authentification",
            "description": "",
            "item": [
                {
                    "name": "Mini description: Inscription d'un nouvel utilisateur avec upload d'avatar optionnel. Retourne le token JWT.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/register",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/register"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "username",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "Nom d'utilisateur unique. Exemple: john_doe"
                                },
                                {
                                    "key": "first_name",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "Pr\u00e9nom. Exemple: John"
                                },
                                {
                                    "key": "last_name",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "Nom. Exemple: Doe"
                                },
                                {
                                    "key": "job",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "M\u00e9tier. Exemple: D\u00e9veloppeur"
                                },
                                {
                                    "key": "location",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "Localisation. Exemple: Paris, France"
                                },
                                {
                                    "key": "country_id",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "The <code>id<\/code> of an existing record in the countries table."
                                },
                                {
                                    "key": "phone",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "Num\u00e9ro de t\u00e9l\u00e9phone. Exemple: +33123456789"
                                },
                                {
                                    "key": "email",
                                    "value": "qkunze@example.com",
                                    "type": "text",
                                    "description": "Email unique. Exemple: john@example.com"
                                },
                                {
                                    "key": "password",
                                    "value": "O[2UZ5ij-e\/dl4m{o,",
                                    "type": "text",
                                    "description": "Min 6 caract\u00e8res. Exemple: password123"
                                },
                                {
                                    "key": "password_confirmation",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "Confirmation du mot de passe. Exemple: password123"
                                },
                                {
                                    "key": "avatar",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"user\": {\"id\": 1, \"username\": \"john_doe\", \"email\": \"john@example.com\"},\n    \"token\": \"<JWT>\"\n  },\n  \"message\": \"User created successfully. Please check your email to verify your account.\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\"success\": false, \"message\": \"Require fields error\", \"data\": {\"email\": [\"The email has already been taken.\"]}}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": false, \"message\": \"Failed to create user\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/auth\/login",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/login",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/login"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"login\":\"consequatur\",\"password\":\"O[2UZ5ij-e\\\/dl4m{o,\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\"success\": true, \"data\": {\"token\": \"<JWT>\", \"role\": \"user\", \"id\": 1}, \"message\": \"User connected successfully\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\"success\": false, \"message\": \"Require fields error\", \"data\": {\"login\": [\"The login field is required.\"]}}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"success\": false, \"message\": \"Unauthorized\", \"data\": \"invalid credential\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"success\": false, \"message\": \"Veuillez v\u00e9rifier votre email avant de vous connecter. Un email de v\u00e9rification a \u00e9t\u00e9 envoy\u00e9 \u00e0 votre adresse.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": false, \"message\": \"error\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/auth\/refresh",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/refresh",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/refresh"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"newToken\": \"<JWT>\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"error\": \"Token has expired and can no longer be refreshed\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"error\": \"Failed to refresh token\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Endpoints",
            "description": "",
            "item": [
                {
                    "name": "Display Oauth2 callback pages.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/oauth2-callback",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/oauth2-callback"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Authenticate the request for channel access.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/broadcasting\/auth",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/broadcasting\/auth"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "G\u00e8re l'authentification des channels priv\u00e9s avec JWT.\nG\u00e9n\u00e8re la signature Pusher\/Reverb manuellement.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/reservations\/change-status-reservation-by-proprio\/{reservation_id}\/{status}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reservations\/change-status-reservation-by-proprio\/:reservation_id\/:status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reservations\/change-status-reservation-by-proprio\/:reservation_id\/:status",
                            "variable": [
                                {
                                    "id": "reservation_id",
                                    "key": "reservation_id",
                                    "value": "consequatur",
                                    "description": "The ID of the reservation."
                                },
                                {
                                    "id": "status",
                                    "key": "status",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/booking_canceled_to_guest_notification\/{payment_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/booking_canceled_to_guest_notification\/:payment_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/booking_canceled_to_guest_notification\/:payment_id",
                            "variable": [
                                {
                                    "id": "payment_id",
                                    "key": "payment_id",
                                    "value": "consequatur",
                                    "description": "The ID of the payment."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/auth\/verify-email",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/verify-email",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/verify-email"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "V\u00e9rification d'email sp\u00e9cifique pour les propri\u00e9taires (flux d'abonnement)\nRedirige vers la page de v\u00e9rification propri\u00e9taire du frontend",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/verify-owner-email",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/verify-owner-email"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "GET \/api\/v1\/auth\/verify-owner-email?user_id=xxx&token=xxx&plan=pro&period=annual&props=5",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/auth\/resend-verification",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/resend-verification",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/resend-verification"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/quotes\/confirm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/quotes\/confirm",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/quotes\/confirm"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "V\u00e9rifie le statut du paiement apr\u00e8s redirection depuis Stripe",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/quotes\/payment\/verify",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/quotes\/payment\/verify"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Cette m\u00e9thode est appel\u00e9e par le frontend apr\u00e8s que Stripe redirige\nl'utilisateur vers la page de succ\u00e8s avec le session_id",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "G\u00e8re les \u00e9v\u00e9nements webhook envoy\u00e9s par Stripe",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/stripe\/webhook",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/stripe\/webhook"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/new_message_from_traveler\/{message_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/new_message_from_traveler\/:message_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/new_message_from_traveler\/:message_id",
                            "variable": [
                                {
                                    "id": "message_id",
                                    "key": "message_id",
                                    "value": "consequatur",
                                    "description": "The ID of the message."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/new_message_from_traveler_comment_notification\/{comment_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/new_message_from_traveler_comment_notification\/:comment_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/new_message_from_traveler_comment_notification\/:comment_id",
                            "variable": [
                                {
                                    "id": "comment_id",
                                    "key": "comment_id",
                                    "value": "consequatur",
                                    "description": "The ID of the comment."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/owner_message_to_traveler_notification\/{message_id}\/{sender_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/owner_message_to_traveler_notification\/:message_id\/:sender_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/owner_message_to_traveler_notification\/:message_id\/:sender_id",
                            "variable": [
                                {
                                    "id": "message_id",
                                    "key": "message_id",
                                    "value": "consequatur",
                                    "description": "The ID of the message."
                                },
                                {
                                    "id": "sender_id",
                                    "key": "sender_id",
                                    "value": "consequatur",
                                    "description": "The ID of the sender."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/payment_status_notification\/{payment_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payment_status_notification\/:payment_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payment_status_notification\/:payment_id",
                            "variable": [
                                {
                                    "id": "payment_id",
                                    "key": "payment_id",
                                    "value": "consequatur",
                                    "description": "The ID of the payment."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/hi",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/hi",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/hi"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/properties\/public",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/public",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/public"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/properties\/popular",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/popular",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/popular"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/properties\/search",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/search",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/search"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Recherche de propri\u00e9t\u00e9s avec filtres avanc\u00e9s\nGET \/api\/v1\/properties\/search",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/filter",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/filter"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/properties\/{id}\/favorite",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:id\/favorite",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:id\/favorite",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the property."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/properties\/get\/favorites",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/get\/favorites",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/get\/favorites"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/properties\/favorites\/search",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/favorites\/search",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/favorites\/search"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/properties\/{propertyId}\/active-offers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:propertyId\/active-offers",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:propertyId\/active-offers",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/properties\/{propertyId}\/active-packages",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:propertyId\/active-packages",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:propertyId\/active-packages",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/properties\/{propertyId}\/active-seasons",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:propertyId\/active-seasons",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:propertyId\/active-seasons",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/properties\/{propertyId}\/active-services",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:propertyId\/active-services",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:propertyId\/active-services",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/property\/types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/property\/types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/property\/types"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/reservations\/preview",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reservations\/preview",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reservations\/preview"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"property_id\":\"consequatur\",\"checkin_date\":\"2026-02-03T17:41:12\",\"checkout_date\":\"2107-03-05\",\"promo_code\":\"consequatur\",\"service_ids\":[17],\"rooms_count\":45,\"offer_id\":17,\"package_ids\":[17],\"rooms\":[{\"rooms_count\":45}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/auth\/register-owner",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/register-owner",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/register-owner"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"first_name\":\"vmqeopfuudtdsufvyvddq\",\"last_name\":\"amniihfqcoynlazghdtqt\",\"email\":\"andreanne00@example.org\",\"phone\":\"consequatur\",\"country_id\":\"consequatur\",\"password\":\"[2UZ5ij-e\\\/dl4\",\"password_confirmation\":\"vyvddqamniihfqcoynlazghdtqtqxbajwbpilpmufinllwloauydlsmsjuryvojcybzvrbyick\",\"user_type\":\"company\",\"country_region\":\"consequatur\",\"id_type\":\"identity_card\",\"id_number\":\"consequatur\",\"id_expiry_date\":\"2026-02-03T17:41:12\",\"id_reco_path\":\"mqeopfuudtdsufvyvddqa\",\"id_verso_path\":\"mniihfqcoynlazghdtqtq\",\"place_type\":\"other\",\"place_details\":\"consequatur\",\"address\":\"consequatur\",\"city\":\"consequatur\",\"state\":\"consequatur\",\"postal_code\":\"consequatur\",\"country\":\"consequatur\",\"latitude\":11613.31890586,\"longitude\":11613.31890586,\"plan_slug\":\"free\",\"billing_period\":\"annual\",\"properties_count\":51}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/auth\/logout",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/logout",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/logout"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/auth\/google",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/google",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/google"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/auth\/google\/callback",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/google\/callback",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/google\/callback"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/auth\/facebook",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/facebook",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/facebook"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/auth\/facebook\/callback",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/facebook\/callback",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/facebook\/callback"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/password_reset\/verify_email",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/password_reset\/verify_email",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/password_reset\/verify_email"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/password_reset\/verify_code_dended",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/password_reset\/verify_code_dended",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/password_reset\/verify_code_dended"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/password_reset\/reset_old_password",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/password_reset\/reset_old_password",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/password_reset\/reset_old_password"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/policies\/index",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/policies\/index",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/policies\/index"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/policies\/show_policy_by_id\/{policy_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/policies\/show_policy_by_id\/:policy_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/policies\/show_policy_by_id\/:policy_id",
                            "variable": [
                                {
                                    "id": "policy_id",
                                    "key": "policy_id",
                                    "value": "consequatur",
                                    "description": "The ID of the policy."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/policies\/store",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/policies\/store",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/policies\/store"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/policies\/update\/{policy_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/policies\/update\/:policy_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/policies\/update\/:policy_id",
                            "variable": [
                                {
                                    "id": "policy_id",
                                    "key": "policy_id",
                                    "value": "consequatur",
                                    "description": "The ID of the policy."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/policies\/delete\/{policy_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/policies\/delete\/:policy_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/policies\/delete\/:policy_id",
                            "variable": [
                                {
                                    "id": "policy_id",
                                    "key": "policy_id",
                                    "value": "consequatur",
                                    "description": "The ID of the policy."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/policies\/type\/{type}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/policies\/type\/:type",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/policies\/type\/:type",
                            "variable": [
                                {
                                    "id": "type",
                                    "key": "type",
                                    "value": "consequatur",
                                    "description": "The type."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/user\/policies\/unaccepted",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user\/policies\/unaccepted",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user\/policies\/unaccepted"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/user\/policies\/check\/{type}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user\/policies\/check\/:type",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user\/policies\/check\/:type",
                            "variable": [
                                {
                                    "id": "type",
                                    "key": "type",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/user\/policies\/accept\/{policyId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user\/policies\/accept\/:policyId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user\/policies\/accept\/:policyId",
                            "variable": [
                                {
                                    "id": "policyId",
                                    "key": "policyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/seasons-test",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/seasons-test",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/seasons-test"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/seasons-test",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/seasons-test",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/seasons-test"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"season_libelle\":\"vmqeopfuudtdsufvyvddq\",\"season_description\":\"consequatur\",\"season_start_date\":\"2020-05-31\",\"season_end_date\":\"2107-03-05\",\"season_reduction_percent\":0,\"season_min_stay\":56,\"season_max_stay\":17,\"season_reduction_policy\":\"none\",\"property_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/seasons-test\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/seasons-test\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/seasons-test\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the seasons test."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/seasons-test\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/seasons-test\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/seasons-test\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the seasons test."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"season_libelle\":\"vmqeopfuudtdsufvyvddq\",\"season_description\":\"consequatur\",\"season_start_date\":\"2020-05-31\",\"season_end_date\":\"2107-03-05\",\"season_reduction_percent\":0,\"season_min_stay\":56,\"season_max_stay\":17,\"season_reduction_policy\":\"weekly\",\"season_status\":\"active\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/seasons-test\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/seasons-test\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/seasons-test\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the seasons test."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/webhook\/notifications",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/webhook\/notifications",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/webhook\/notifications"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/get-countries",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/get-countries",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/get-countries"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/get-cities\/{country_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/get-cities\/:country_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/get-cities\/:country_id",
                            "variable": [
                                {
                                    "id": "country_id",
                                    "key": "country_id",
                                    "value": "consequatur",
                                    "description": "The ID of the country."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/get-neighborhoods\/{city_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/get-neighborhoods\/:city_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/get-neighborhoods\/:city_id",
                            "variable": [
                                {
                                    "id": "city_id",
                                    "key": "city_id",
                                    "value": "consequatur",
                                    "description": "The ID of the city."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Retourne le calendrier journalier d'une propri\u00e9t\u00e9 entre deux dates.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendars\/properties\/:property_id\/availability",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendars\/properties\/:property_id\/availability",
                            "variable": [
                                {
                                    "id": "property_id",
                                    "key": "property_id",
                                    "value": "consequatur",
                                    "description": "The ID of the property."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"from\":\"2026-02-03\",\"to\":\"2026-02-03\"}"
                        },
                        "description": "GET \/api\/v1\/calendar\/properties\/{property_id}\/availability?from=YYYY-MM-DD&to=YYYY-MM-DD",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Op\u00e9rations en masse sur le calendrier d'une propri\u00e9t\u00e9.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendars\/properties\/:property_id\/bulk",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendars\/properties\/:property_id\/bulk",
                            "variable": [
                                {
                                    "id": "property_id",
                                    "key": "property_id",
                                    "value": "consequatur",
                                    "description": "The ID of the property."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"action\":\"block\",\"start_date\":\"2026-02-03\",\"end_date\":\"2026-02-03\",\"reason\":\"vmqeopfuudtdsufvyvddq\",\"price_per_night\":1,\"cleaning_fee\":45,\"extra_guest_fee\":46}"
                        },
                        "description": "POST \/api\/v1\/calendar\/properties\/{property_id}\/bulk\nbody: { action: block|unblock|set_price, start_date, end_date, reason?, price_per_night? }",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9er une fermeture de dates (non r\u00e9servable) pour une propri\u00e9t\u00e9.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendars\/properties\/:property_id\/close",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendars\/properties\/:property_id\/close",
                            "variable": [
                                {
                                    "id": "property_id",
                                    "key": "property_id",
                                    "value": "consequatur",
                                    "description": "The ID of the property."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"start_date\":\"2026-02-03\",\"end_date\":\"2026-02-03\",\"reason\":\"vmqeopfuudtdsufvyvddq\"}"
                        },
                        "description": "POST \/api\/v1\/calendar\/properties\/{property_id}\/close\nbody: { start_date: Y-m-d, end_date: Y-m-d, reason?: string }\nR\u00e8gle: on refuse si la p\u00e9riode chevauche une r\u00e9servation EXISTANTE quel que soit le statut (pending, inquiry, confirmed, etc.).",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Supprimer une fermeture pr\u00e9cise par ID.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendars\/properties\/:property_id\/close\/:block_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendars\/properties\/:property_id\/close\/:block_id",
                            "variable": [
                                {
                                    "id": "property_id",
                                    "key": "property_id",
                                    "value": "consequatur",
                                    "description": "The ID of the property."
                                },
                                {
                                    "id": "block_id",
                                    "key": "block_id",
                                    "value": "consequatur",
                                    "description": "The ID of the block."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "DELETE \/api\/v1\/calendar\/properties\/{property_id}\/close\/{block_id}",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Supprimer toutes les fermetures qui chevauchent une plage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendars\/properties\/:property_id\/close",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendars\/properties\/:property_id\/close",
                            "variable": [
                                {
                                    "id": "property_id",
                                    "key": "property_id",
                                    "value": "consequatur",
                                    "description": "The ID of the property."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"from\":\"2026-02-03\",\"to\":\"2026-02-03\"}"
                        },
                        "description": "DELETE \/api\/v1\/calendar\/properties\/{property_id}\/close?from=YYYY-MM-DD&to=YYYY-MM-DD",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/webhook\/notifications-list",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/webhook\/notifications-list",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/webhook\/notifications-list"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/webhook\/list",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/webhook\/list",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/webhook\/list"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/webhook\/{propertyUuid}\/show",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/webhook\/:propertyUuid\/show",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/webhook\/:propertyUuid\/show",
                            "variable": [
                                {
                                    "id": "propertyUuid",
                                    "key": "propertyUuid",
                                    "value": "66529e01-d113-3473-8d6f-9e11e09332ea",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/webhook\/{propertyUuid}\/create",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/webhook\/:propertyUuid\/create",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/webhook\/:propertyUuid\/create",
                            "variable": [
                                {
                                    "id": "propertyUuid",
                                    "key": "propertyUuid",
                                    "value": "66529e01-d113-3473-8d6f-9e11e09332ea",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/webhook\/{propertyUuid}\/create-test",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/webhook\/:propertyUuid\/create-test",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/webhook\/:propertyUuid\/create-test",
                            "variable": [
                                {
                                    "id": "propertyUuid",
                                    "key": "propertyUuid",
                                    "value": "66529e01-d113-3473-8d6f-9e11e09332ea",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/webhook\/{webhookUuid}\/{propertyUuid}\/update",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/webhook\/:webhookUuid\/:propertyUuid\/update",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/webhook\/:webhookUuid\/:propertyUuid\/update",
                            "variable": [
                                {
                                    "id": "webhookUuid",
                                    "key": "webhookUuid",
                                    "value": "66529e01-d113-3473-8d6f-9e11e09332ea",
                                    "description": ""
                                },
                                {
                                    "id": "propertyUuid",
                                    "key": "propertyUuid",
                                    "value": "66529e01-d113-3473-8d6f-9e11e09332ea",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/webhook\/{webhookUuid}\/delete",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/webhook\/:webhookUuid\/delete",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/webhook\/:webhookUuid\/delete",
                            "variable": [
                                {
                                    "id": "webhookUuid",
                                    "key": "webhookUuid",
                                    "value": "66529e01-d113-3473-8d6f-9e11e09332ea",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/room-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/room-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/room-types"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/room-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/room-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/room-types"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/room-types\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/room-types\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/room-types\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the room type."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/room-types\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/room-types\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/room-types\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the room type."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/room-types\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/room-types\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/room-types\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the room type."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/property-information-templates",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/property-information-templates",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/property-information-templates"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/property-information-templates",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/property-information-templates",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/property-information-templates"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/property-information-templates\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/property-information-templates\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/property-information-templates\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the property information template."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/property-information-templates\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/property-information-templates\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/property-information-templates\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the property information template."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/property-information-templates\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/property-information-templates\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/property-information-templates\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the property information template."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/property-information-templates\/categories",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/property-information-templates\/categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/property-information-templates\/categories"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/users",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/users",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/users"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/users",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/users",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/users"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"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\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/users\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/users\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/users\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/users\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/users\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/users\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "2",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"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\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/users\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/users\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/users\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "2",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/owner\/assigned-users",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/owner\/assigned-users",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/owner\/assigned-users"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/assigned-users\/create-and-assign",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/assigned-users\/create-and-assign",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/assigned-users\/create-and-assign"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"username\":\"consequatur\",\"first_name\":\"consequatur\",\"last_name\":\"consequatur\",\"email\":\"carolyne.luettgen@example.org\",\"phone\":\"fuudtdsufvyvddqam\",\"role\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/assigned-users",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/assigned-users",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/assigned-users"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/assigned-users",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/assigned-users",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/assigned-users"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/assigned-users\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/assigned-users\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/assigned-users\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the assigned user."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/assigned-users\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/assigned-users\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/assigned-users\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the assigned user."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"first_name\":\"consequatur\",\"last_name\":\"consequatur\",\"role\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/assigned-users\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/assigned-users\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/assigned-users\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the assigned user."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/space-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/space-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/space-types"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/space-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/space-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/space-types"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/space-types\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/space-types\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/space-types\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the space type."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/space-types\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/space-types\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/space-types\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the space type."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/space-types\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/space-types\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/space-types\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the space type."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/conveniences-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/conveniences-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/conveniences-types"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/conveniences-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/conveniences-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/conveniences-types"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/conveniences-types\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/conveniences-types\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/conveniences-types\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the conveniences type."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/conveniences-types\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/conveniences-types\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/conveniences-types\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the conveniences type."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/conveniences-types\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/conveniences-types\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/conveniences-types\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the conveniences type."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/channels",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/channels",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/channels"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/channels",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/channels",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/channels"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "name",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "ota_code",
                                    "value": "WBK",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "description",
                                    "value": "Dolores dolorum amet iste laborum eius est dolor.",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "icon",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "picture",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/guest-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/guest-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/guest-types"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/guest-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/guest-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/guest-types"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/guest-types\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/guest-types\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/guest-types\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the guest type."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/guest-types\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/guest-types\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/guest-types\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the guest type."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/guest-types\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/guest-types\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/guest-types\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the guest type."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/contract-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/contract-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/contract-types"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/contract-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/contract-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/contract-types"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/contract-types\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/contract-types\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/contract-types\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the contract type."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/contract-types\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/contract-types\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/contract-types\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the contract type."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/contract-types\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/contract-types\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/contract-types\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the contract type."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Match automatique d'une politique selon crit\u00e8res.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/refund-policies\/match",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/refund-policies\/match"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_id\":17,\"accommodation_type\":\"mqeopfuudtdsufvyvddqa\",\"stay_nights\":45}"
                        },
                        "description": "GET \/api\/refund-policies\/match?user_id=...&accommodation_type=...&stay_nights=...",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/refund-policies",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/refund-policies",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/refund-policies"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/refund-policies",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/refund-policies",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/refund-policies"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"force_majeure\",\"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}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/refund-policies\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/refund-policies\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/refund-policies\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the refund policy."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/refund-policies\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/refund-policies\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/refund-policies\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the refund policy."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"semi_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}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/refund-policies\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/refund-policies\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/refund-policies\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the refund policy."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Soumission du justificatif par l\u2019h\u00f4te (\u2264 24h)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reservations\/:reservation_id\/cancellation-justification",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reservations\/:reservation_id\/cancellation-justification",
                            "variable": [
                                {
                                    "id": "reservation_id",
                                    "key": "reservation_id",
                                    "value": "2",
                                    "description": "The ID of the reservation."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "reason_type",
                                    "value": "security_issue",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "description",
                                    "value": "Dolores dolorum amet iste laborum eius est dolor.",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "document",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Validation \/ rejet par IMOBIZNETS (admin)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/cancellation-justifications",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/cancellation-justifications"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"approved\",\"justification_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/admin\/cancellation-justifications",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/cancellation-justifications",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/cancellation-justifications"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/erpnext\/dashboard\/accounting",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/erpnext\/dashboard\/accounting",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/erpnext\/dashboard\/accounting"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/prepartion-times",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/prepartion-times",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/prepartion-times"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/prepartion-times",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/prepartion-times",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/prepartion-times"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/prepartion-times\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/prepartion-times\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/prepartion-times\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the prepartion time."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/prepartion-times\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/prepartion-times\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/prepartion-times\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the prepartion time."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/prepartion-times\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/prepartion-times\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/prepartion-times\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the prepartion time."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/offers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/offers",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/offers"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/offers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/offers",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/offers"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"target\":\"amniihfqcoynlazghdtqt\",\"description\":\"Necessitatibus architecto aut consequatur debitis et id.\",\"is_active\":true,\"properties\":[{\"id\":\"consequatur\",\"discount_value\":45,\"discount_type\":\"percent\",\"expiration_date\":\"2107-03-05\"}],\"offer_type\":\"weekend\",\"min_days_before_checkin\":73,\"max_days_before_checkin\":45,\"min_nights\":56,\"max_nights\":17,\"valid_from\":\"2026-02-03T17:41:19\",\"valid_until\":\"2107-03-05\",\"applicable_days\":[3],\"max_uses\":56,\"is_combinable\":true,\"priority\":16}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/offers\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/offers\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/offers\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the offer."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/offers\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/offers\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/offers\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the offer."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"target\":\"amniihfqcoynlazghdtqt\",\"description\":\"Necessitatibus architecto aut consequatur debitis et id.\",\"is_active\":true}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/offers\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/offers\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/offers\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the offer."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/packages",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/packages",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/packages"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/packages",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/packages",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/packages"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"target\":\"amniihfqcoynlazghdtqt\",\"description\":\"Necessitatibus architecto aut consequatur debitis et id.\",\"price\":31,\"is_active\":false}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/packages\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/packages\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/packages\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the package."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/packages\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/packages\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/packages\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the package."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/packages\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/packages\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/packages\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the package."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/{packageId}\/assign",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/:packageId\/assign",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/:packageId\/assign",
                            "variable": [
                                {
                                    "id": "packageId",
                                    "key": "packageId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/packages\/{packageId}\/properties\/{propertyId}\/toggle",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/packages\/:packageId\/properties\/:propertyId\/toggle",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/packages\/:packageId\/properties\/:propertyId\/toggle",
                            "variable": [
                                {
                                    "id": "packageId",
                                    "key": "packageId",
                                    "value": "consequatur",
                                    "description": ""
                                },
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/packages\/{packageId}\/properties\/{propertyId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/packages\/:packageId\/properties\/:propertyId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/packages\/:packageId\/properties\/:propertyId",
                            "variable": [
                                {
                                    "id": "packageId",
                                    "key": "packageId",
                                    "value": "consequatur",
                                    "description": ""
                                },
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/conveniences",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/conveniences",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/conveniences"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/conveniences",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/conveniences",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/conveniences"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"is_active\":\"consequatur\",\"conveniences_type_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/conveniences\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/conveniences\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/conveniences\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the convenience."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/conveniences\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/conveniences\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/conveniences\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the convenience."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"is_active\":\"consequatur\",\"conveniences_type_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/conveniences\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/conveniences\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/conveniences\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the convenience."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/countries",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/countries",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/countries"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/countries",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/countries",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/countries"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"flag\":\"consequatur\",\"zip_code\":\"consequatur\",\"iso_code\":\"consequatur\",\"phone_code\":\"consequatur\",\"currency_code\":\"consequatur\",\"support_commission\":11613.31890586}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/countries\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/countries\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/countries\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the country."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/countries\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/countries\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/countries\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the country."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"flag\":\"consequatur\",\"zip_code\":\"consequatur\",\"phone_code\":\"consequatur\",\"currency_code\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/countries\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/countries\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/countries\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the country."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/cities",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/cities",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/cities"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/cities",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/cities",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/cities"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"country_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/cities\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/cities\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/cities\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the city."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/cities\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/cities\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/cities\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the city."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"country_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/cities\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/cities\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/cities\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the city."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/neighborhoods",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/neighborhoods",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/neighborhoods"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/neighborhoods",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/neighborhoods",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/neighborhoods"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"city_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/neighborhoods\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/neighborhoods\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/neighborhoods\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the neighborhood."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/neighborhoods\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/neighborhoods\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/neighborhoods\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the neighborhood."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/neighborhoods\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/neighborhoods\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/neighborhoods\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the neighborhood."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/code-promos",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/code-promos",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/code-promos"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/code-promos",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/code-promos",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/code-promos"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"code\":\"vmqeopfuudtdsufvyvddq\",\"description\":\"Dolores molestias ipsam sit.\",\"value\":25,\"discount_type\":\"fixed\",\"usage_limit\":19,\"used_count\":57,\"start_date\":\"2026-02-03T17:41:22\",\"end_date\":\"2107-03-05\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/code-promos\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/code-promos\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/code-promos\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the code promo."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/code-promos\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/code-promos\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/code-promos\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the code promo."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"code\":\"vmqeopfuudtdsufvyvddq\",\"description\":\"Dolores molestias ipsam sit.\",\"value\":25,\"discount_type\":\"percentage\",\"usage_limit\":19,\"used_count\":57,\"start_date\":\"2026-02-03T17:41:22\",\"end_date\":\"2107-03-05\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/code-promos\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/code-promos\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/code-promos\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "10",
                                    "description": "The ID of the code promo."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/code-promos\/validate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/code-promos\/validate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/code-promos\/validate"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"code\":\"consequatur\",\"property_id\":17}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/market-places",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/market-places",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/market-places"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/market-places",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/market-places",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/market-places"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"logo\":\"consequatur\",\"url\":\"http:\\\/\\\/kunze.biz\\\/iste-laborum-eius-est-dolor.html\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/market-places\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/market-places\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/market-places\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the market place."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/market-places\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/market-places\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/market-places\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the market place."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"logo\":\"consequatur\",\"url\":\"http:\\\/\\\/kunze.biz\\\/iste-laborum-eius-est-dolor.html\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/market-places\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/market-places\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/market-places\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the market place."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/document-managements",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/document-managements",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/document-managements"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/document-managements",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/document-managements",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/document-managements"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "document_name",
                                    "value": "vmqeopfuudtdsufvyvddq",
                                    "type": "text",
                                    "description": "Must not be greater than 255 characters."
                                },
                                {
                                    "key": "document_description",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "property_id",
                                    "value": "17",
                                    "type": "text",
                                    "description": "The <code>id<\/code> of an existing record in the properties table."
                                },
                                {
                                    "key": "party_type",
                                    "value": "individual",
                                    "type": "text",
                                    "description": "Limite \u00e0 5MB."
                                },
                                {
                                    "key": "document_file",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/document-managements\/{document_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/document-managements\/:document_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/document-managements\/:document_id",
                            "variable": [
                                {
                                    "id": "document_id",
                                    "key": "document_id",
                                    "value": "14",
                                    "description": "The ID of the document."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/document-managements\/{document_id}\/update",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/document-managements\/:document_id\/update",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/document-managements\/:document_id\/update",
                            "variable": [
                                {
                                    "id": "document_id",
                                    "key": "document_id",
                                    "value": "14",
                                    "description": "The ID of the document."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"document_name\":\"vmqeopfuudtdsufvyvddq\",\"document_description\":\"consequatur\",\"property_id\":17}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/document-managements\/{document_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/document-managements\/:document_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/document-managements\/:document_id",
                            "variable": [
                                {
                                    "id": "document_id",
                                    "key": "document_id",
                                    "value": "14",
                                    "description": "The ID of the document."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/document-managements\/{document_id}\/status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/document-managements\/:document_id\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/document-managements\/:document_id\/status",
                            "variable": [
                                {
                                    "id": "document_id",
                                    "key": "document_id",
                                    "value": "14",
                                    "description": "The ID of the document."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "G\u00e9n\u00e9rer uniquement un lien de partage public (sans envoi d'email).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/document-managements\/:document_id\/share-link",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/document-managements\/:document_id\/share-link",
                            "variable": [
                                {
                                    "id": "document_id",
                                    "key": "document_id",
                                    "value": "14",
                                    "description": "The ID of the document."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "POST \/api\/v1\/document-managements\/{document_id}\/generate-link",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Partager un document avec une liste d'emails.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/document-managements\/:document_id\/share",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/document-managements\/:document_id\/share",
                            "variable": [
                                {
                                    "id": "document_id",
                                    "key": "document_id",
                                    "value": "14",
                                    "description": "The ID of the document."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"emails\":[\"user1@example.com\",\"user2@example.com\"],\"can_edit\":false,\"expires_in_hours\":72,\"message\":\"\\\"Voici le contrat \u00e0 signer\\\"\"}"
                        },
                        "description": "POST \/api\/v1\/document-managements\/{document_id}\/share",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/claims-managements",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/claims-managements",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/claims-managements"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/claims-managements",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/claims-managements",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/claims-managements"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"mark\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"reservation_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/claims-managements\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/claims-managements\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/claims-managements\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the claims management."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"mark\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/claims-managements\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/claims-managements\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/claims-managements\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the claims management."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/services\/my-services",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/services\/my-services",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/services\/my-services"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/services",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/services",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/services"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/services",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/services",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/services"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/services\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/services\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/services\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the service."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/services\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/services\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/services\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the service."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/services\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/services\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/services\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the service."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/electronic-key-managements",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/electronic-key-managements",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/electronic-key-managements"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/electronic-key-managements",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/electronic-key-managements",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/electronic-key-managements"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"key_code\":\"consequatur\",\"key_type\":\"consequatur\",\"key_status\":\"consequatur\",\"property_id\":\"consequatur\",\"channel_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/electronic-key-managements\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/electronic-key-managements\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/electronic-key-managements\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the electronic key management."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/electronic-key-managements\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/electronic-key-managements\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/electronic-key-managements\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the electronic key management."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"key_code\":\"consequatur\",\"key_type\":\"consequatur\",\"key_status\":\"consequatur\",\"property_id\":\"consequatur\",\"channel_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/electronic-key-managements\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/electronic-key-managements\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/electronic-key-managements\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the electronic key management."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/property-cares\/get-stats",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/property-cares\/get-stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/property-cares\/get-stats"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/property-cares",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/property-cares",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/property-cares"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/property-cares",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/property-cares",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/property-cares"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"kind\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"status\":\"in_progress\",\"emergency\":\"high\",\"property_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/property-cares\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/property-cares\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/property-cares\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the property care."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/property-cares\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/property-cares\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/property-cares\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the property care."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"kind\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"status\":\"pending\",\"emergency\":\"low\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/property-cares\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/property-cares\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/property-cares\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "5",
                                    "description": "The ID of the property care."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/platform-links",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/platform-links",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/platform-links"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/platform-links",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/platform-links",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/platform-links"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"logo\":\"consequatur\",\"url\":\"http:\\\/\\\/kunze.biz\\\/iste-laborum-eius-est-dolor.html\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/platform-links\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/platform-links\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/platform-links\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the platform link."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/platform-links\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/platform-links\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/platform-links\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the platform link."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"logo\":\"consequatur\",\"url\":\"http:\\\/\\\/kunze.biz\\\/iste-laborum-eius-est-dolor.html\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/platform-links\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/platform-links\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/platform-links\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the platform link."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/contract-managements",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/contract-managements",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/contract-managements"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/contract-managements",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/contract-managements",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/contract-managements"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "title",
                                    "value": "vmqeopfuudtdsufvyvddq",
                                    "type": "text",
                                    "description": "Must not be greater than 255 characters."
                                },
                                {
                                    "key": "description",
                                    "value": "Dolores dolorum amet iste laborum eius est dolor.",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "start_date",
                                    "value": "2026-02-03T17:41:29",
                                    "type": "text",
                                    "description": "Must be a valid date."
                                },
                                {
                                    "key": "end_date",
                                    "value": "2107-03-05",
                                    "type": "text",
                                    "description": "Must be a valid date. Must be a date after or equal to <code>start_date<\/code>."
                                },
                                {
                                    "key": "channel_id",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "contract_type",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/contract-managements\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/contract-managements\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/contract-managements\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the contract management."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/contract-managements\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/contract-managements\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/contract-managements\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the contract management."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"title\":\"vmqeopfuudtdsufvyvddq\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"start_date\":\"2026-02-03T17:41:30\",\"end_date\":\"2107-03-05\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/contract-managements\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/contract-managements\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/contract-managements\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the contract management."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/inventory-managements",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/inventory-managements",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/inventory-managements"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/inventory-managements",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/inventory-managements",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/inventory-managements"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"location\":\"consequatur\",\"date\":\"2026-02-03T17:41:30\",\"details\":\"consequatur\",\"item_name\":\"consequatur\",\"item_description\":\"consequatur\",\"quantity\":\"consequatur\",\"reservation_id\":\"consequatur\",\"property_id\":\"consequatur\",\"channel_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/inventory-managements\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/inventory-managements\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/inventory-managements\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the inventory management."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/inventory-managements\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/inventory-managements\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/inventory-managements\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the inventory management."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"location\":\"consequatur\",\"date\":\"2026-02-03T17:41:30\",\"details\":\"consequatur\",\"item_name\":\"consequatur\",\"item_description\":\"consequatur\",\"quantity\":17,\"reservation_id\":17,\"property_id\":17,\"channel_id\":17}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/inventory-managements\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/inventory-managements\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/inventory-managements\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the inventory management."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/seasons",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/seasons",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/seasons"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/seasons",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/seasons",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/seasons"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"season_libelle\":\"vmqeopfuudtdsufvyvddq\",\"season_description\":\"consequatur\",\"season_start_date\":\"2020-05-31\",\"season_end_date\":\"2107-03-05\",\"season_reduction_percent\":0,\"season_min_stay\":56,\"season_max_stay\":17,\"season_reduction_policy\":\"none\",\"property_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/seasons\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/seasons\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/seasons\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the season."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/seasons\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/seasons\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/seasons\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the season."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"season_libelle\":\"vmqeopfuudtdsufvyvddq\",\"season_description\":\"consequatur\",\"season_start_date\":\"2020-05-31\",\"season_end_date\":\"2107-03-05\",\"season_reduction_percent\":0,\"season_min_stay\":56,\"season_max_stay\":17,\"season_reduction_policy\":\"nights\",\"season_status\":\"active\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/seasons\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/seasons\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/seasons\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the season."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/booing-audits",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/booing-audits",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/booing-audits"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/booing-audits",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/booing-audits",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/booing-audits"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"booking_ref_code\":\"consequatur\",\"checkin_date\":\"consequatur\",\"checkout_date\":\"consequatur\",\"guests\":\"consequatur\",\"price_details\":\"consequatur\",\"status\":\"consequatur\",\"special_requests\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/booing-audits\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/booing-audits\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/booing-audits\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the booing audit."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/booing-audits\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/booing-audits\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/booing-audits\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the booing audit."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"booking_ref_code\":\"consequatur\",\"checkin_date\":\"consequatur\",\"checkout_date\":\"consequatur\",\"guests\":\"consequatur\",\"price_details\":\"consequatur\",\"status\":\"consequatur\",\"special_requests\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/booing-audits\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/booing-audits\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/booing-audits\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "The ID of the booing audit."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/partnerships",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/partnerships",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/partnerships"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/partnerships",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/partnerships",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/partnerships"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "type",
                                    "value": "physique",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "firstName",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "Champs pour type physique. This field is required when <code>type<\/code> is <code>physique<\/code>."
                                },
                                {
                                    "key": "lastName",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "This field is required when <code>type<\/code> is <code>physique<\/code>."
                                },
                                {
                                    "key": "libelle",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "Champs pour type morale. This field is required when <code>type<\/code> is <code>morale<\/code>."
                                },
                                {
                                    "key": "email",
                                    "value": "carolyne.luettgen@example.org",
                                    "type": "text",
                                    "description": "Must be a valid email address."
                                },
                                {
                                    "key": "phone",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "contract_date",
                                    "value": "2026-02-03T17:41:31",
                                    "type": "text",
                                    "description": "Must be a valid date."
                                },
                                {
                                    "key": "address",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "contract_file",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/partnerships\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/partnerships\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/partnerships\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the partnership."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/partnerships\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/partnerships\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/partnerships\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the partnership."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "type",
                                    "value": "physique",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "firstName",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "Personne physique. This field is required when <code>type<\/code> is <code>physique<\/code>."
                                },
                                {
                                    "key": "lastName",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "This field is required when <code>type<\/code> is <code>physique<\/code>."
                                },
                                {
                                    "key": "libelle",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "Personne morale. This field is required when <code>type<\/code> is <code>morale<\/code>."
                                },
                                {
                                    "key": "contract_date",
                                    "value": "2026-02-03T17:41:31",
                                    "type": "text",
                                    "description": "Must be a valid date."
                                },
                                {
                                    "key": "address",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "status",
                                    "value": "disable",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "contract_file",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "_method",
                                    "value": "PUT",
                                    "type": "text"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/partnerships\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/partnerships\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/partnerships\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the partnership."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/commodities",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/commodities",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/commodities"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/commodities",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/commodities",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/commodities"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"type\":\"amniihfqcoynlazghdtqt\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/commodities\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/commodities\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/commodities\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the commodity."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/commodities\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/commodities\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/commodities\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the commodity."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/commodities\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/commodities\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/commodities\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the commodity."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/conditions-managements",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/conditions-managements",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/conditions-managements"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/conditions-managements",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/conditions-managements",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/conditions-managements"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"title\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/conditions-managements\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/conditions-managements\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/conditions-managements\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the conditions management."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/conditions-managements\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/conditions-managements\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/conditions-managements\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the conditions management."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"title\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/conditions-managements\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/conditions-managements\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/conditions-managements\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the conditions management."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/advertisements",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/advertisements",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/advertisements"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/advertisements",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/advertisements",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/advertisements"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"consequatur\",\"posting_date\":\"2026-02-03T17:41:32\",\"status\":\"approve\",\"price\":\"consequatur\",\"property_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/advertisements\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/advertisements\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/advertisements\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the advertisement."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/advertisements\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/advertisements\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/advertisements\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the advertisement."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"consequatur\",\"posting_date\":\"2026-02-03T17:41:32\",\"status\":\"approve\",\"price\":\"consequatur\",\"property_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/advertisements\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/advertisements\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/advertisements\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the advertisement."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/partnerships\/search",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/partnerships\/search",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/partnerships\/search"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/advertisements\/{user_id}\/advertisement\/status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/advertisements\/:user_id\/advertisement\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/advertisements\/:user_id\/advertisement\/status",
                            "variable": [
                                {
                                    "id": "user_id",
                                    "key": "user_id",
                                    "value": "consequatur",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"pending\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/advertisements\/all\/advertisement",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/advertisements\/all\/advertisement",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/advertisements\/all\/advertisement"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/advertisements\/{user_id}\/advertisement",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/advertisements\/:user_id\/advertisement",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/advertisements\/:user_id\/advertisement",
                            "variable": [
                                {
                                    "id": "user_id",
                                    "key": "user_id",
                                    "value": "consequatur",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/advertisements\/{user_id}\/search-advertisement",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/advertisements\/:user_id\/search-advertisement",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/advertisements\/:user_id\/search-advertisement",
                            "variable": [
                                {
                                    "id": "user_id",
                                    "key": "user_id",
                                    "value": "consequatur",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/advertisements\/{user_id}\/search-type-property-advertisement",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/advertisements\/:user_id\/search-type-property-advertisement",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/advertisements\/:user_id\/search-type-property-advertisement",
                            "variable": [
                                {
                                    "id": "user_id",
                                    "key": "user_id",
                                    "value": "consequatur",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/advertisements\/{user_id}\/advertisement-pending",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/advertisements\/:user_id\/advertisement-pending",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/advertisements\/:user_id\/advertisement-pending",
                            "variable": [
                                {
                                    "id": "user_id",
                                    "key": "user_id",
                                    "value": "consequatur",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/advertisements\/{user_id}\/advertisement-approve",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/advertisements\/:user_id\/advertisement-approve",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/advertisements\/:user_id\/advertisement-approve",
                            "variable": [
                                {
                                    "id": "user_id",
                                    "key": "user_id",
                                    "value": "consequatur",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/advertisements\/{user_id}\/advertisement-refuse",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/advertisements\/:user_id\/advertisement-refuse",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/advertisements\/:user_id\/advertisement-refuse",
                            "variable": [
                                {
                                    "id": "user_id",
                                    "key": "user_id",
                                    "value": "consequatur",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/event\/ical-feeds",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/event\/ical-feeds",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/event\/ical-feeds"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/event\/ical-feeds",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/event\/ical-feeds",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/event\/ical-feeds"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"title\":\"consequatur\",\"url\":\"https:\\\/\\\/www.mueller.com\\\/laborum-eius-est-dolor-dolores-minus-voluptatem\",\"user_id\":\"consequatur\",\"source\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/event\/ical-feeds\/{id}\/sync",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/event\/ical-feeds\/:id\/sync",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/event\/ical-feeds\/:id\/sync",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the ical feed."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/event\/ical-feeds\/{id}\/send-events",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/event\/ical-feeds\/:id\/send-events",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/event\/ical-feeds\/:id\/send-events",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the ical feed."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/ical-feeds\/export-all-reservation-to-ical",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ical-feeds\/export-all-reservation-to-ical",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ical-feeds\/export-all-reservation-to-ical"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/ical-feeds\/{reservation_id}\/export-single-reservation-ical",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ical-feeds\/:reservation_id\/export-single-reservation-ical",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ical-feeds\/:reservation_id\/export-single-reservation-ical",
                            "variable": [
                                {
                                    "id": "reservation_id",
                                    "key": "reservation_id",
                                    "value": "consequatur",
                                    "description": "The ID of the reservation."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/ical-feeds\/{property_id}\/export-ical",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ical-feeds\/:property_id\/export-ical",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ical-feeds\/:property_id\/export-ical",
                            "variable": [
                                {
                                    "id": "property_id",
                                    "key": "property_id",
                                    "value": "consequatur",
                                    "description": "The ID of the property."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/ical-feeds\/import-ical-file",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ical-feeds\/import-ical-file",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ical-feeds\/import-ical-file"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/ical-feeds\/import-ical-from-url",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ical-feeds\/import-ical-from-url",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ical-feeds\/import-ical-from-url"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Store a newly created price override.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/pricing\/overrides",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/pricing\/overrides"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Afficher tous les tarifs pour une propri\u00e9t\u00e9.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/pricing\/overrides",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/pricing\/overrides"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/calendar\/availability",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendar\/availability",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendar\/availability"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/calendar\/check",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendar\/check",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendar\/check"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"property_id\":\"consequatur\",\"checkin_date\":\"2026-02-03T17:41:32\",\"checkout_date\":\"2107-03-05\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/tasks\/{task}\/status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/tasks\/:task\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/tasks\/:task\/status",
                            "variable": [
                                {
                                    "id": "task",
                                    "key": "task",
                                    "value": "consequatur",
                                    "description": "The task."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"cancelled\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/tasks\/by-status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/tasks\/by-status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/tasks\/by-status"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"cancelled\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/tasks\/overdue",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/tasks\/overdue",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/tasks\/overdue"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/tasks",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/tasks",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/tasks"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/tasks",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/tasks",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/tasks"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"title\":\"amniihfqcoynlazghdtqt\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"starting_date\":\"2026-02-03T17:41:32\",\"ending_date\":\"2107-03-05\",\"status\":\"in_progress\",\"priority\":\"low\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/tasks\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/tasks\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/tasks\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the task."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/tasks\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/tasks\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/tasks\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the task."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"title\":\"amniihfqcoynlazghdtqt\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"starting_date\":\"2026-02-03T17:41:32\",\"ending_date\":\"2107-03-05\",\"status\":\"completed\",\"priority\":\"low\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/tasks\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/tasks\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/tasks\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the task."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Display a listing of the resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_template_placeholders",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_template_placeholders"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Store a newly created resource in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_template_placeholders",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_template_placeholders"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Display the specified resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_template_placeholders\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_template_placeholders\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the mail template placeholder."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update the specified resource in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_template_placeholders\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_template_placeholders\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the mail template placeholder."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove the specified resource from storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_template_placeholders\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_template_placeholders\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the mail template placeholder."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/mail_template_placeholders\/{mail_template_placeholder}\/status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_template_placeholders\/:mail_template_placeholder\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_template_placeholders\/:mail_template_placeholder\/status",
                            "variable": [
                                {
                                    "id": "mail_template_placeholder",
                                    "key": "mail_template_placeholder",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Display a listing of the resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_template_settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_template_settings"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Store a newly created resource in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_template_settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_template_settings"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Display the specified resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_template_settings\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_template_settings\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the mail template setting."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Met \u00e0 jour les param\u00e8tres de notification pour plusieurs propri\u00e9t\u00e9s.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_template_settings\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_template_settings\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the mail template setting."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove the specified resource from storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_template_settings\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_template_settings\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the mail template setting."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Liste tous les types de notifications, group\u00e9s par cat\u00e9gorie.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_template_types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_template_types"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Store a newly created resource in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_template_types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_template_types"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "(Optionnel) R\u00e9cup\u00e9rer un type sp\u00e9cifique.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_template_types\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_template_types\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the mail template type."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update the specified resource in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_template_types\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_template_types\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the mail template type."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove the specified resource from storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_template_types\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_template_types\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the mail template type."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/mail_template_categories",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_template_categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_template_categories"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/mail_template_categories",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_template_categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_template_categories"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/mail_template_categories\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_template_categories\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_template_categories\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the mail template category."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/mail_template_categories\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_template_categories\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_template_categories\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the mail template category."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/mail_template_categories\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_template_categories\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_template_categories\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the mail template category."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/mail_template_categories\/{mail_template_category}\/status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_template_categories\/:mail_template_category\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_template_categories\/:mail_template_category\/status",
                            "variable": [
                                {
                                    "id": "mail_template_category",
                                    "key": "mail_template_category",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/mail_templates",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_templates",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_templates"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/mail_templates",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_templates",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_templates"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/mail_templates\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_templates\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_templates\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the mail template."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/mail_templates\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_templates\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_templates\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the mail template."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/mail_templates\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_templates\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_templates\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the mail template."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/mail_templates\/{mail_template}\/status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail_templates\/:mail_template\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail_templates\/:mail_template\/status",
                            "variable": [
                                {
                                    "id": "mail_template",
                                    "key": "mail_template",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/get_languages",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/get_languages",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/get_languages"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/show_language\/{language_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/show_language\/:language_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/show_language\/:language_id",
                            "variable": [
                                {
                                    "id": "language_id",
                                    "key": "language_id",
                                    "value": "consequatur",
                                    "description": "The ID of the language."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/store_language",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/store_language",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/store_language"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/update_language\/{language_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/update_language\/:language_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/update_language\/:language_id",
                            "variable": [
                                {
                                    "id": "language_id",
                                    "key": "language_id",
                                    "value": "consequatur",
                                    "description": "The ID of the language."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/delete_language\/{language_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/delete_language\/:language_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/delete_language\/:language_id",
                            "variable": [
                                {
                                    "id": "language_id",
                                    "key": "language_id",
                                    "value": "consequatur",
                                    "description": "The ID of the language."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/change_status_language\/{language_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/change_status_language\/:language_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/change_status_language\/:language_id",
                            "variable": [
                                {
                                    "id": "language_id",
                                    "key": "language_id",
                                    "value": "consequatur",
                                    "description": "The ID of the language."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/chatbots",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/chatbots",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/chatbots"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/chatbots\/new_chat",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/chatbots\/new_chat",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/chatbots\/new_chat"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/chatbots\/{chatbot_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/chatbots\/:chatbot_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/chatbots\/:chatbot_id",
                            "variable": [
                                {
                                    "id": "chatbot_id",
                                    "key": "chatbot_id",
                                    "value": "consequatur",
                                    "description": "The ID of the chatbot."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/chatbots\/{chatbot_id}\/closed",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/chatbots\/:chatbot_id\/closed",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/chatbots\/:chatbot_id\/closed",
                            "variable": [
                                {
                                    "id": "chatbot_id",
                                    "key": "chatbot_id",
                                    "value": "consequatur",
                                    "description": "The ID of the chatbot."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/chatbots\/{chatbot_id}\/destroy",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/chatbots\/:chatbot_id\/destroy",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/chatbots\/:chatbot_id\/destroy",
                            "variable": [
                                {
                                    "id": "chatbot_id",
                                    "key": "chatbot_id",
                                    "value": "consequatur",
                                    "description": "The ID of the chatbot."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/history_chatbots\/chat_to_bot",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/history_chatbots\/chat_to_bot",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/history_chatbots\/chat_to_bot"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/history_chatbots\/{chatbot_history_id}\/response",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/history_chatbots\/:chatbot_history_id\/response",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/history_chatbots\/:chatbot_history_id\/response",
                            "variable": [
                                {
                                    "id": "chatbot_history_id",
                                    "key": "chatbot_history_id",
                                    "value": "consequatur",
                                    "description": "The ID of the chatbot history."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/history_chatbots\/{chatbot_history_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/history_chatbots\/:chatbot_history_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/history_chatbots\/:chatbot_history_id",
                            "variable": [
                                {
                                    "id": "chatbot_history_id",
                                    "key": "chatbot_history_id",
                                    "value": "consequatur",
                                    "description": "The ID of the chatbot history."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/history_chatbots\/{chatbot_history_id}\/update",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/history_chatbots\/:chatbot_history_id\/update",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/history_chatbots\/:chatbot_history_id\/update",
                            "variable": [
                                {
                                    "id": "chatbot_history_id",
                                    "key": "chatbot_history_id",
                                    "value": "consequatur",
                                    "description": "The ID of the chatbot history."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/history_chatbots\/{chatbot_history_id}\/destroy",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/history_chatbots\/:chatbot_history_id\/destroy",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/history_chatbots\/:chatbot_history_id\/destroy",
                            "variable": [
                                {
                                    "id": "chatbot_history_id",
                                    "key": "chatbot_history_id",
                                    "value": "consequatur",
                                    "description": "The ID of the chatbot history."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/emails",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/emails",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/emails"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/emails",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/emails",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/emails"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/emails\/{mail_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/emails\/:mail_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/emails\/:mail_id",
                            "variable": [
                                {
                                    "id": "mail_id",
                                    "key": "mail_id",
                                    "value": "consequatur",
                                    "description": "The ID of the mail."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/emails\/{mail_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/emails\/:mail_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/emails\/:mail_id",
                            "variable": [
                                {
                                    "id": "mail_id",
                                    "key": "mail_id",
                                    "value": "consequatur",
                                    "description": "The ID of the mail."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/emails\/{mail_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/emails\/:mail_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/emails\/:mail_id",
                            "variable": [
                                {
                                    "id": "mail_id",
                                    "key": "mail_id",
                                    "value": "consequatur",
                                    "description": "The ID of the mail."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/category_emails",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/category_emails",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/category_emails"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/category_emails",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/category_emails",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/category_emails"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/category_emails\/{category_mail_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/category_emails\/:category_mail_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/category_emails\/:category_mail_id",
                            "variable": [
                                {
                                    "id": "category_mail_id",
                                    "key": "category_mail_id",
                                    "value": "consequatur",
                                    "description": "The ID of the category mail."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/category_emails\/{category_mail_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/category_emails\/:category_mail_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/category_emails\/:category_mail_id",
                            "variable": [
                                {
                                    "id": "category_mail_id",
                                    "key": "category_mail_id",
                                    "value": "consequatur",
                                    "description": "The ID of the category mail."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/category_emails\/{category_mail_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/category_emails\/:category_mail_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/category_emails\/:category_mail_id",
                            "variable": [
                                {
                                    "id": "category_mail_id",
                                    "key": "category_mail_id",
                                    "value": "consequatur",
                                    "description": "The ID of the category mail."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/calendar\/events",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendar\/events",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendar\/events"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/calendar\/events",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendar\/events",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendar\/events"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/calendar\/events\/{eventId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendar\/events\/:eventId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendar\/events\/:eventId",
                            "variable": [
                                {
                                    "id": "eventId",
                                    "key": "eventId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/calendar\/events\/{eventId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendar\/events\/:eventId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendar\/events\/:eventId",
                            "variable": [
                                {
                                    "id": "eventId",
                                    "key": "eventId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/calendar\/events\/{eventId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendar\/events\/:eventId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendar\/events\/:eventId",
                            "variable": [
                                {
                                    "id": "eventId",
                                    "key": "eventId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/calendar\/events\/{eventId}\/participants",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendar\/events\/:eventId\/participants",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendar\/events\/:eventId\/participants",
                            "variable": [
                                {
                                    "id": "eventId",
                                    "key": "eventId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/calendar\/events\/{eventId}\/participants\/{userId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendar\/events\/:eventId\/participants\/:userId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendar\/events\/:eventId\/participants\/:userId",
                            "variable": [
                                {
                                    "id": "eventId",
                                    "key": "eventId",
                                    "value": "consequatur",
                                    "description": ""
                                },
                                {
                                    "id": "userId",
                                    "key": "userId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/user\/logout",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user\/logout",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user\/logout"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/user\/list",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user\/list",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user\/list"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/user\/{user_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user\/:user_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user\/:user_id",
                            "variable": [
                                {
                                    "id": "user_id",
                                    "key": "user_id",
                                    "value": "2",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/user\/search-user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user\/search-user",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user\/search-user"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/user\/user-active",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user\/user-active",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user\/user-active"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/user\/user-to-block",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user\/user-to-block",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user\/user-to-block"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/user\/user-owner",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user\/user-owner",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user\/user-owner"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/user\/user-guest",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user\/user-guest",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user\/user-guest"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/user\/become-owner",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user\/become-owner",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user\/become-owner"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_type\":\"company\",\"country_region\":\"consequatur\",\"id_type\":\"passport\",\"id_number\":\"consequatur\",\"id_expiry_date\":\"2026-02-03T17:41:37\",\"id_reco_path\":\"mqeopfuudtdsufvyvddqa\",\"id_verso_path\":\"mniihfqcoynlazghdtqtq\",\"place_type\":\"house\",\"place_details\":\"consequatur\",\"address\":\"consequatur\",\"city\":\"consequatur\",\"state\":\"consequatur\",\"postal_code\":\"consequatur\",\"country\":\"consequatur\",\"latitude\":11613.31890586,\"longitude\":11613.31890586}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/user\/owner-requests",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user\/owner-requests",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user\/owner-requests"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/user\/accept-owner-request\/{requesterId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user\/accept-owner-request\/:requesterId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user\/accept-owner-request\/:requesterId",
                            "variable": [
                                {
                                    "id": "requesterId",
                                    "key": "requesterId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/user\/owner-request-status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user\/owner-request-status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user\/owner-request-status"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/user\/individuals",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user\/individuals",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user\/individuals"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/user\/companies",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user\/companies",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user\/companies"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/user\/stats",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user\/stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user\/stats"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/user\/stats\/detailed",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user\/stats\/detailed",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user\/stats\/detailed"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/user\/admin-support\/assign",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user\/admin-support\/assign",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user\/admin-support\/assign"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Mettre \u00e0 jour la langue pr\u00e9f\u00e9r\u00e9e de l'utilisateur\nPATCH \/api\/v1\/users\/locale",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user\/locale",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user\/locale"
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"locale\":\"fr\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Obtenir la langue actuelle d\u00e9tect\u00e9e\nGET \/api\/v1\/locale",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/locale",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/locale"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/reservations\/search",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reservations\/search",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reservations\/search"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/reservations\/monthly-stats",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reservations\/monthly-stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reservations\/monthly-stats"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/reservations\/dashboard-stats",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reservations\/dashboard-stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reservations\/dashboard-stats"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/reservations\/analytics\/predictive",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reservations\/analytics\/predictive",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reservations\/analytics\/predictive"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/reservations\/count-reservations-user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reservations\/count-reservations-user",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reservations\/count-reservations-user"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/reservations\/traffic-origins",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reservations\/traffic-origins",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reservations\/traffic-origins"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/reservations\/modified",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reservations\/modified",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reservations\/modified"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/reservations\/with-owner\/{owner_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reservations\/with-owner\/:owner_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reservations\/with-owner\/:owner_id",
                            "variable": [
                                {
                                    "id": "owner_id",
                                    "key": "owner_id",
                                    "value": "consequatur",
                                    "description": "The ID of the owner."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "R\u00e9cup\u00e9rer l'historique des r\u00e9servations d'un client sp\u00e9cifique sur les propri\u00e9t\u00e9s du propri\u00e9taire connect\u00e9",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reservations\/with-client\/:client_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reservations\/with-client\/:client_id",
                            "variable": [
                                {
                                    "id": "client_id",
                                    "key": "client_id",
                                    "value": "consequatur",
                                    "description": "The ID of the client."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/reservations\/{id}\/invoice",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reservations\/:id\/invoice",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reservations\/:id\/invoice",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "2",
                                    "description": "The ID of the reservation."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Approuve un remboursement en attente pour une r\u00e9servation",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reservations\/:id\/approve-refund",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reservations\/:id\/approve-refund",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "2",
                                    "description": "The ID of the reservation."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Rejette un remboursement en attente pour une r\u00e9servation",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reservations\/:id\/reject-refund",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reservations\/:id\/reject-refund",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "2",
                                    "description": "The ID of the reservation."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/reservations\/{reservation_id}\/cancel",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reservations\/:reservation_id\/cancel",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reservations\/:reservation_id\/cancel",
                            "variable": [
                                {
                                    "id": "reservation_id",
                                    "key": "reservation_id",
                                    "value": "2",
                                    "description": "The ID of the reservation."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"reason\":\"vmqeopfuudtdsufvyvddq\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Retourne le calendrier journalier d'une propri\u00e9t\u00e9 entre deux dates.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendar\/properties\/:property_id\/availability",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendar\/properties\/:property_id\/availability",
                            "variable": [
                                {
                                    "id": "property_id",
                                    "key": "property_id",
                                    "value": "consequatur",
                                    "description": "The ID of the property."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"from\":\"2026-02-03\",\"to\":\"2026-02-03\"}"
                        },
                        "description": "GET \/api\/v1\/calendar\/properties\/{property_id}\/availability?from=YYYY-MM-DD&to=YYYY-MM-DD",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/calendar\/properties\/{property_id}\/full",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendar\/properties\/:property_id\/full",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendar\/properties\/:property_id\/full",
                            "variable": [
                                {
                                    "id": "property_id",
                                    "key": "property_id",
                                    "value": "consequatur",
                                    "description": "The ID of the property."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"from\":\"2026-02-03\",\"to\":\"2026-02-03\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Retourne la liste des dates bloqu\u00e9es sur la p\u00e9riode demand\u00e9e.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendar\/properties\/blocked-dates",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendar\/properties\/blocked-dates"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"from\":\"2026-02-03\",\"to\":\"2026-02-03\",\"property_id\":17}"
                        },
                        "description": "Route: GET \/api\/calendar\/properties\/blocked-dates?from=YYYY-MM-DD&to=YYYY-MM-DD&property_id=123 (property_id optionnel)\nSi property_id est fourni, on retourne uniquement pour cette propri\u00e9t\u00e9, sinon pour toutes les propri\u00e9t\u00e9s.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Modifier une date bloqu\u00e9e sp\u00e9cifique\nPUT \/api\/v1\/calendar\/properties\/{property_id}\/blocks\/{block_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendar\/properties\/:property_id\/blocked-dates\/:block_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendar\/properties\/:property_id\/blocked-dates\/:block_id",
                            "variable": [
                                {
                                    "id": "property_id",
                                    "key": "property_id",
                                    "value": "consequatur",
                                    "description": "The ID of the property."
                                },
                                {
                                    "id": "block_id",
                                    "key": "block_id",
                                    "value": "consequatur",
                                    "description": "The ID of the block."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"start_date\":\"2026-02-03\",\"end_date\":\"2026-02-03\",\"reason\":\"vmqeopfuudtdsufvyvddq\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Version l\u00e9g\u00e8re pour les calendriers (sans les d\u00e9tails jour par jour des quotes)\nGET \/api\/v1\/calendar\/properties\/{property_id}\/overview?from=YYYY-MM-DD&to=YYYY-MM-DD",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendar\/properties\/:property_id\/overview",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendar\/properties\/:property_id\/overview",
                            "variable": [
                                {
                                    "id": "property_id",
                                    "key": "property_id",
                                    "value": "consequatur",
                                    "description": "The ID of the property."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"from\":\"2026-02-03\",\"to\":\"2026-02-03\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/calendar\/properties\/with-calendar-actions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendar\/properties\/with-calendar-actions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendar\/properties\/with-calendar-actions"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Version avec pagination pour beaucoup de propri\u00e9t\u00e9s\nGET \/api\/v1\/calendar\/properties-with-actions\/paginated?page=1&per_page=10",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendar\/properties\/with-calendar-actions\/paginated",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendar\/properties\/with-calendar-actions\/paginated"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Op\u00e9rations en masse sur le calendrier d'une propri\u00e9t\u00e9.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendar\/properties\/:property_id\/bulk",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendar\/properties\/:property_id\/bulk",
                            "variable": [
                                {
                                    "id": "property_id",
                                    "key": "property_id",
                                    "value": "consequatur",
                                    "description": "The ID of the property."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"action\":\"unblock\",\"start_date\":\"2026-02-03\",\"end_date\":\"2026-02-03\",\"reason\":\"vmqeopfuudtdsufvyvddq\",\"price_per_night\":1,\"cleaning_fee\":45,\"extra_guest_fee\":46}"
                        },
                        "description": "POST \/api\/v1\/calendar\/properties\/{property_id}\/bulk\nbody: { action: block|unblock|set_price, start_date, end_date, reason?, price_per_night? }",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9er une fermeture de dates (non r\u00e9servable) pour une propri\u00e9t\u00e9.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendar\/properties\/:property_id\/close",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendar\/properties\/:property_id\/close",
                            "variable": [
                                {
                                    "id": "property_id",
                                    "key": "property_id",
                                    "value": "consequatur",
                                    "description": "The ID of the property."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"start_date\":\"2026-02-03\",\"end_date\":\"2026-02-03\",\"reason\":\"vmqeopfuudtdsufvyvddq\"}"
                        },
                        "description": "POST \/api\/v1\/calendar\/properties\/{property_id}\/close\nbody: { start_date: Y-m-d, end_date: Y-m-d, reason?: string }\nR\u00e8gle: on refuse si la p\u00e9riode chevauche une r\u00e9servation EXISTANTE quel que soit le statut (pending, inquiry, confirmed, etc.).",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Supprimer une fermeture pr\u00e9cise par ID.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendar\/properties\/:property_id\/close\/:block_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendar\/properties\/:property_id\/close\/:block_id",
                            "variable": [
                                {
                                    "id": "property_id",
                                    "key": "property_id",
                                    "value": "consequatur",
                                    "description": "The ID of the property."
                                },
                                {
                                    "id": "block_id",
                                    "key": "block_id",
                                    "value": "consequatur",
                                    "description": "The ID of the block."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "DELETE \/api\/v1\/calendar\/properties\/{property_id}\/close\/{block_id}",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Supprimer toutes les fermetures qui chevauchent une plage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calendar\/properties\/:property_id\/close",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calendar\/properties\/:property_id\/close",
                            "variable": [
                                {
                                    "id": "property_id",
                                    "key": "property_id",
                                    "value": "consequatur",
                                    "description": "The ID of the property."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"from\":\"2026-02-03\",\"to\":\"2026-02-03\"}"
                        },
                        "description": "DELETE \/api\/v1\/calendar\/properties\/{property_id}\/close?from=YYYY-MM-DD&to=YYYY-MM-DD",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/quotes\/preview",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/quotes\/preview",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/quotes\/preview"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"property_id\":\"consequatur\",\"checkin_date\":\"2026-02-03T17:41:40\",\"checkout_date\":\"2107-03-05\",\"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\":\"website\",\"refund_policy_id\":17}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/quotes",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/quotes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/quotes"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"property_id\":\"consequatur\",\"checkin_date\":\"2026-02-03T17:41:40\",\"checkout_date\":\"2107-03-05\",\"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\":true,\"notes\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/quotes\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/quotes\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/quotes\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the quote."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/quotes\/{id}\/convert",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/quotes\/:id\/convert",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/quotes\/:id\/convert",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the quote."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"completed\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/quotes\/{id}\/status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/quotes\/:id\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/quotes\/:id\/status",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the quote."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"draft\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/quotes\/{id}\/update",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/quotes\/:id\/update",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/quotes\/:id\/update",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the quote."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"checkin_date\":\"2026-02-03T17:41:41\",\"checkout_date\":\"2107-03-05\",\"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}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/quotes\/{id}\/send",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/quotes\/:id\/send",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/quotes\/:id\/send",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the quote."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/quotes\/{id}\/email-preview",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/quotes\/:id\/email-preview",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/quotes\/:id\/email-preview",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the quote."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/quotes\/{id}\/email-draft",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/quotes\/:id\/email-draft",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/quotes\/:id\/email-draft",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the quote."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email_subject_draft\":\"vmqeopfuudtdsufvyvddq\",\"email_body_draft\":\"consequatur\",\"email_locale\":\"hi_IN\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/quotes\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/quotes\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/quotes\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the quote."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/quotes\/{id}\/deletion-check",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/quotes\/:id\/deletion-check",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/quotes\/:id\/deletion-check",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the quote."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/properties",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "name_of_structure",
                                    "value": "vmqeopfuudtdsufvyvddq",
                                    "type": "text",
                                    "description": "Must not be greater than 255 characters."
                                },
                                {
                                    "key": "who_are_you",
                                    "value": "amniihfqcoynlazghdtqt",
                                    "type": "text",
                                    "description": "Must not be greater than 255 characters."
                                },
                                {
                                    "key": "internal_name",
                                    "value": "qxbajwbpilpmufinllwlo",
                                    "type": "text",
                                    "description": "Must not be greater than 255 characters."
                                },
                                {
                                    "key": "public_name",
                                    "value": "auydlsmsjuryvojcybzvr",
                                    "type": "text",
                                    "description": "Must not be greater than 255 characters."
                                },
                                {
                                    "key": "square_footage",
                                    "value": "73",
                                    "type": "text",
                                    "description": "Must be at least 0."
                                },
                                {
                                    "key": "check_in_time",
                                    "value": "17:41:41",
                                    "type": "text",
                                    "description": "Must be a valid date in the format <code>H:i:s<\/code>."
                                },
                                {
                                    "key": "check_in_time_end",
                                    "value": "17:41:41",
                                    "type": "text",
                                    "description": "Must be a valid date in the format <code>H:i:s<\/code>."
                                },
                                {
                                    "key": "check_out_time",
                                    "value": "17:41:41",
                                    "type": "text",
                                    "description": "Must be a valid date in the format <code>H:i:s<\/code>."
                                },
                                {
                                    "key": "type",
                                    "value": "mqeopfuudtdsufvyvddqa",
                                    "type": "text",
                                    "description": "Must not be greater than 255 characters."
                                },
                                {
                                    "key": "description",
                                    "value": "Dolores dolorum amet iste laborum eius est dolor.",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "state",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "address",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "location",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "country_name",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "breakfast_included",
                                    "value": "",
                                    "type": "text",
                                    "description": "'status' => 'required|string',."
                                },
                                {
                                    "key": "pets_allowed",
                                    "value": "1",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "base_price",
                                    "value": "73",
                                    "type": "text",
                                    "description": "Must be at least 0."
                                },
                                {
                                    "key": "price_per_night",
                                    "value": "45",
                                    "type": "text",
                                    "description": "Must be at least 0."
                                },
                                {
                                    "key": "currency_id",
                                    "value": "17",
                                    "type": "text",
                                    "description": "The <code>id<\/code> of an existing record in the currencies table."
                                },
                                {
                                    "key": "pricing",
                                    "value": "45",
                                    "type": "text",
                                    "description": "Must be at least 0."
                                },
                                {
                                    "key": "capacity",
                                    "value": "56",
                                    "type": "text",
                                    "description": "Must be at least 1."
                                },
                                {
                                    "key": "cleaning_fee",
                                    "value": "16",
                                    "type": "text",
                                    "description": "Must be at least 0."
                                },
                                {
                                    "key": "tax",
                                    "value": "50",
                                    "type": "text",
                                    "description": "Must be at least 0."
                                },
                                {
                                    "key": "like_count",
                                    "value": "55",
                                    "type": "text",
                                    "description": "Must be at least 0."
                                },
                                {
                                    "key": "security_deposit",
                                    "value": "19",
                                    "type": "text",
                                    "description": "Must be at least 0."
                                },
                                {
                                    "key": "rating",
                                    "value": "4",
                                    "type": "text",
                                    "description": "Must be at least 0. Must not be greater than 5."
                                },
                                {
                                    "key": "image_urls[0]",
                                    "value": "http:\/\/kunze.biz\/iste-laborum-eius-est-dolor.html",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "import_id",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "import_selected[0]",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "property_type_id",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "The <code>id<\/code> of an existing record in the property_types table."
                                },
                                {
                                    "key": "neighborhood_id",
                                    "value": "17",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "room_types_channex[0][title]",
                                    "value": "mqeopfuudtdsufvyvddqa",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "room_types_channex[0][count_of_rooms]",
                                    "value": "45",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "room_types_channex[0][occ_adults]",
                                    "value": "46",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "room_types_channex[0][default_occupancy]",
                                    "value": "28",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "room_types_channex[0][occ_children]",
                                    "value": "30",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "room_types_channex[0][occ_infants]",
                                    "value": "25",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "rate_plans_channex[0][title]",
                                    "value": "fqcoynlazghdtqtqxbajw",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "rate_plans_channex[0][room_type_title]",
                                    "value": "bpilpmufinllwloauydls",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "rate_plans_channex[0][currency]",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "rate_plans_channex[0][children_fee]",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "rate_plans_channex[0][infant_fee]",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "rate_plans_channex[0][options][0][occupancy]",
                                    "value": "45",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "rate_plans_channex[0][options][0][is_primary]",
                                    "value": "",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "rate_plans_channex[0][options][0][rate]",
                                    "value": "11613.31890586",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "images[]",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Importer une propri\u00e9t\u00e9 depuis une URL externe (Airbnb, Booking, Agoda)\nPOST \/api\/v1\/properties\/import",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/import",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/import"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/properties\/{property_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:property_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:property_id",
                            "variable": [
                                {
                                    "id": "property_id",
                                    "key": "property_id",
                                    "value": "consequatur",
                                    "description": "The ID of the property."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "internal_name",
                                    "value": "vmqeopfuudtdsufvyvddq",
                                    "type": "text",
                                    "description": "Must not be greater than 255 characters."
                                },
                                {
                                    "key": "public_name",
                                    "value": "amniihfqcoynlazghdtqt",
                                    "type": "text",
                                    "description": "Must not be greater than 255 characters."
                                },
                                {
                                    "key": "square_footage",
                                    "value": "16",
                                    "type": "text",
                                    "description": "Must not be greater than 999999."
                                },
                                {
                                    "key": "check_in_time",
                                    "value": "17:41:41",
                                    "type": "text",
                                    "description": "Must be a valid date in the format <code>H:i:s<\/code>."
                                },
                                {
                                    "key": "check_in_time_end",
                                    "value": "17:41:41",
                                    "type": "text",
                                    "description": "Must be a valid date in the format <code>H:i:s<\/code>."
                                },
                                {
                                    "key": "check_out_time",
                                    "value": "17:41:41",
                                    "type": "text",
                                    "description": "Must be a valid date in the format <code>H:i:s<\/code>."
                                },
                                {
                                    "key": "type",
                                    "value": "xbajwbpilpmufinllwloa",
                                    "type": "text",
                                    "description": "Must not be greater than 255 characters."
                                },
                                {
                                    "key": "description",
                                    "value": "Dolores dolorum amet iste laborum eius est dolor.",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "address",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "location",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "country_name",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "status",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "breakfast_included",
                                    "value": "",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "pets_allowed",
                                    "value": "1",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "base_price",
                                    "value": "11613.31890586",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "price_per_night",
                                    "value": "11613.31890586",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "pricing",
                                    "value": "11613.31890586",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "capacity",
                                    "value": "17",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "cleaning_fee",
                                    "value": "11613.31890586",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "tax",
                                    "value": "11613.31890586",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "like_count",
                                    "value": "17",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "security_deposit",
                                    "value": "11613.31890586",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "rating",
                                    "value": "11613.31890586",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "delete_media_ids[0]",
                                    "value": "17",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "keep_media_ids[0]",
                                    "value": "17",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "neighborhood_id",
                                    "value": "17",
                                    "type": "text",
                                    "description": "'convenience_id' => 'sometimes|exists:conveniences,id',."
                                },
                                {
                                    "key": "room_types_channex[0][title]",
                                    "value": "mqeopfuudtdsufvyvddqa",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "room_types_channex[0][count_of_rooms]",
                                    "value": "45",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "room_types_channex[0][occ_adults]",
                                    "value": "46",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "room_types_channex[0][default_occupancy]",
                                    "value": "28",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "room_types_channex[0][occ_children]",
                                    "value": "30",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "room_types_channex[0][occ_infants]",
                                    "value": "25",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "rate_plans_channex[0][title]",
                                    "value": "fqcoynlazghdtqtqxbajw",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "rate_plans_channex[0][room_type_title]",
                                    "value": "bpilpmufinllwloauydls",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "rate_plans_channex[0][currency]",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "rate_plans_channex[0][children_fee]",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "rate_plans_channex[0][infant_fee]",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "rate_plans_channex[0][options][0][occupancy]",
                                    "value": "45",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "rate_plans_channex[0][options][0][is_primary]",
                                    "value": "",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "rate_plans_channex[0][options][0][rate]",
                                    "value": "11613.31890586",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "images[]",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "medias[]",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/properties\/{property_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:property_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:property_id",
                            "variable": [
                                {
                                    "id": "property_id",
                                    "key": "property_id",
                                    "value": "consequatur",
                                    "description": "The ID of the property."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/properties\/{property_id}\/comments",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:property_id\/comments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:property_id\/comments",
                            "variable": [
                                {
                                    "id": "property_id",
                                    "key": "property_id",
                                    "value": "consequatur",
                                    "description": "The ID of the property."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/properties\/{user_id}\/property",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:user_id\/property",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:user_id\/property",
                            "variable": [
                                {
                                    "id": "user_id",
                                    "key": "user_id",
                                    "value": "consequatur",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/properties\/{user_id}\/property\/active",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:user_id\/property\/active",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:user_id\/property\/active",
                            "variable": [
                                {
                                    "id": "user_id",
                                    "key": "user_id",
                                    "value": "consequatur",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/properties\/{user_id}\/property\/inactive",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:user_id\/property\/inactive",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:user_id\/property\/inactive",
                            "variable": [
                                {
                                    "id": "user_id",
                                    "key": "user_id",
                                    "value": "consequatur",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/properties\/{user_id}\/property\/search-type",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:user_id\/property\/search-type",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:user_id\/property\/search-type",
                            "variable": [
                                {
                                    "id": "user_id",
                                    "key": "user_id",
                                    "value": "consequatur",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/properties\/{user_id}\/property\/search-date",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:user_id\/property\/search-date",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:user_id\/property\/search-date",
                            "variable": [
                                {
                                    "id": "user_id",
                                    "key": "user_id",
                                    "value": "consequatur",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/properties\/{id}\/recommended",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:id\/recommended",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:id\/recommended",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the property."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/properties\/webhooks\/espo",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/webhooks\/espo",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/webhooks\/espo"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get real-time room availability for a property\nGET \/api\/v1\/properties\/{id}\/room-availability",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:id\/room-availability",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:id\/room-availability",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the property."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/claims-managements\/{user_id}\/claims-managements",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/claims-managements\/:user_id\/claims-managements",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/claims-managements\/:user_id\/claims-managements",
                            "variable": [
                                {
                                    "id": "user_id",
                                    "key": "user_id",
                                    "value": "1",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/notifications\/{id}\/mark-as-read",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications\/:id\/mark-as-read",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications\/:id\/mark-as-read",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the notification."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/notifications\/send",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications\/send",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications\/send"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"title\":\"vmqeopfuudtdsufvyvddq\",\"message\":\"consequatur\",\"payload\":\"consequatur\",\"role\":\"admin\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/notifications\/send-fcm-notification",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications\/send-fcm-notification",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications\/send-fcm-notification"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/notifications\/sent",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications\/sent",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications\/sent"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/reservations\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reservations\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reservations\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "2",
                                    "description": "The ID of the reservation."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/reservations\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reservations\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reservations\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "2",
                                    "description": "The ID of the reservation."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"checkin_date\":\"2026-02-03T17:41:47\",\"checkout_date\":\"2107-03-05\",\"special_requests\":\"consequatur\",\"status\":\"confirmed\",\"rooms\":[{\"room_type_id\":17,\"rate_plan_id\":17,\"rooms_count\":45}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/reservations\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reservations\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reservations\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "2",
                                    "description": "The ID of the reservation."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/medias",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/medias",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/medias"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/medias",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/medias",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/medias"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "media_type",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "property_id",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "The <code>id<\/code> of an existing record in the properties table."
                                },
                                {
                                    "key": "file",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/medias\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/medias\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/medias\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the media."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/medias\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/medias\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/medias\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the media."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "media_type",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "file",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "_method",
                                    "value": "PUT",
                                    "type": "text"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/medias\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/medias\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/medias\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the media."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/comments",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/comments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/comments"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/comments",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/comments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/comments"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"comment\":\"consequatur\",\"owner_response\":\"consequatur\",\"property_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/comments\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/comments\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/comments\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the comment."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/comments\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/comments\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/comments\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the comment."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"comment\":\"consequatur\",\"owner_response\":\"consequatur\",\"status\":\"pending\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/comments\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/comments\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/comments\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the comment."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/notifications",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/notifications",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"title\":\"vmqeopfuudtdsufvyvddq\",\"message\":\"consequatur\",\"payload\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/notifications\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the notification."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/notifications\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the notification."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"title\":\"vmqeopfuudtdsufvyvddq\",\"message\":\"consequatur\",\"payload\":\"consequatur\",\"is_read\":false}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/notifications\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the notification."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/chats\/conversation_summaries",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/chats\/conversation_summaries",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/chats\/conversation_summaries"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/chats\/messages\/{userId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/chats\/messages\/:userId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/chats\/messages\/:userId",
                            "variable": [
                                {
                                    "id": "userId",
                                    "key": "userId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/chats\/send_messages",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/chats\/send_messages",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/chats\/send_messages"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"sender_id\":17,\"receiver_id\":17,\"content\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/chats\/read-message\/{messageId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/chats\/read-message\/:messageId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/chats\/read-message\/:messageId",
                            "variable": [
                                {
                                    "id": "messageId",
                                    "key": "messageId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/chats\/delete_message\/{messageId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/chats\/delete_message\/:messageId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/chats\/delete_message\/:messageId",
                            "variable": [
                                {
                                    "id": "messageId",
                                    "key": "messageId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/chats\/typing_status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/chats\/typing_status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/chats\/typing_status"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/dashboard\/reservations\/pending",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/reservations\/pending",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/reservations\/pending"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/dashboard\/properties\/{propertyId}\/booking-rate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/properties\/:propertyId\/booking-rate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/properties\/:propertyId\/booking-rate",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/dashboard\/properties\/{propertyId}\/income",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/properties\/:propertyId\/income",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/properties\/:propertyId\/income",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/dashboard\/properties\/{propertyId}\/pending-bookings",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/properties\/:propertyId\/pending-bookings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/properties\/:propertyId\/pending-bookings",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/dashboard\/reservations\/monthly",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/reservations\/monthly",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/reservations\/monthly"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/dashboard\/finance\/weekly",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/finance\/weekly",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/finance\/weekly"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/dashboard\/finance\/monthly",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/finance\/monthly",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/finance\/monthly"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/dashboard\/occupancy-rate\/global",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/occupancy-rate\/global",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/occupancy-rate\/global"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/dashboard\/properties\/{propertyId}\/occupancy-rate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/properties\/:propertyId\/occupancy-rate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/properties\/:propertyId\/occupancy-rate",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/dashboard\/properties\/{propertyId}\/comments",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/properties\/:propertyId\/comments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/properties\/:propertyId\/comments",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/dashboard\/properties\/{propertyId}\/average-rating",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/properties\/:propertyId\/average-rating",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/properties\/:propertyId\/average-rating",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/transactions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/transactions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/transactions"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/transactions\/export",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/transactions\/export",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/transactions\/export"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/transactions\/stats",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/transactions\/stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/transactions\/stats"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/transactions\/monthly-summary",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/transactions\/monthly-summary",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/transactions\/monthly-summary"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/transactions\/{transaction}\/refund",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/transactions\/:transaction\/refund",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/transactions\/:transaction\/refund",
                            "variable": [
                                {
                                    "id": "transaction",
                                    "key": "transaction",
                                    "value": "consequatur",
                                    "description": "The transaction."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/transactions\/{transaction}\/cancel",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/transactions\/:transaction\/cancel",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/transactions\/:transaction\/cancel",
                            "variable": [
                                {
                                    "id": "transaction",
                                    "key": "transaction",
                                    "value": "consequatur",
                                    "description": "The transaction."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/payments\/my",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/my",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/my"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/payments\/export",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/export",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/export"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/payments\/{id}\/status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/:id\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/:id\/status",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the payment."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"FAILED\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/payments\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the payment."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/payments\/process",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/process",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/process"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"reservation_id\":17,\"currency\":\"mqe\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/payments\/payments\/webhook",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/payments\/webhook",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/payments\/webhook"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/payments\/{payment}\/receipt",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/:payment\/receipt",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/:payment\/receipt",
                            "variable": [
                                {
                                    "id": "payment",
                                    "key": "payment",
                                    "value": "consequatur",
                                    "description": "The payment."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/payments\/test-webhook\/{session_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/test-webhook\/:session_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/test-webhook\/:session_id",
                            "variable": [
                                {
                                    "id": "session_id",
                                    "key": "session_id",
                                    "value": "consequatur",
                                    "description": "The ID of the session."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "V\u00e9rifier le statut d'un remboursement Stripe",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/:payment_id\/refund-status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/:payment_id\/refund-status",
                            "variable": [
                                {
                                    "id": "payment_id",
                                    "key": "payment_id",
                                    "value": "consequatur",
                                    "description": "The ID of the payment."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/payments\/finalize\/{session_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/finalize\/:session_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/finalize\/:session_id",
                            "variable": [
                                {
                                    "id": "session_id",
                                    "key": "session_id",
                                    "value": "consequatur",
                                    "description": "The ID of the session."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/cards",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/cards",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/cards"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"payment_method_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/property-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/property-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/property-types"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/property-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/property-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/property-types"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/property-types\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/property-types\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/property-types\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the property type."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/property-types\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/property-types\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/property-types\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the property type."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/property-types\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/property-types\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/property-types\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "47",
                                    "description": "The ID of the property type."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/geographic-restrictions\/{restriction_id}\/status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/geographic-restrictions\/:restriction_id\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/geographic-restrictions\/:restriction_id\/status",
                            "variable": [
                                {
                                    "id": "restriction_id",
                                    "key": "restriction_id",
                                    "value": "consequatur",
                                    "description": "The ID of the restriction."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"review\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/geographic-restrictions\/users-dropdown",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/geographic-restrictions\/users-dropdown",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/geographic-restrictions\/users-dropdown"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/geographic-restrictions\/stats",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/geographic-restrictions\/stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/geographic-restrictions\/stats"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/geographic-restrictions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/geographic-restrictions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/geographic-restrictions"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/geographic-restrictions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/geographic-restrictions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/geographic-restrictions"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"restricted_regions\":[\"vmqeopfuudtdsufvyvddq\"],\"restriction_type\":\"limited_access\",\"status\":\"disabled\",\"comments\":\"amniihfqcoynlazghdtqt\",\"user_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/geographic-restrictions\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/geographic-restrictions\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/geographic-restrictions\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the geographic restriction."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/geographic-restrictions\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/geographic-restrictions\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/geographic-restrictions\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the geographic restriction."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"restricted_regions\":[\"vmqeopfuudtdsufvyvddq\"],\"restriction_type\":\"limited_access\",\"status\":\"active\",\"comments\":\"amniihfqcoynlazghdtqt\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/geographic-restrictions\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/geographic-restrictions\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/geographic-restrictions\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the geographic restriction."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/newsletters\/send",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/newsletters\/send",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/newsletters\/send"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"subject\":\"consequatur\",\"content\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/newsletters\/subscribe",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/newsletters\/subscribe",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/newsletters\/subscribe"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"qkunze@example.com\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/newsletters\/unsubscribe",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/newsletters\/unsubscribe",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/newsletters\/unsubscribe"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"qkunze@example.com\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/dashboard\/reservation\/booking-rate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/reservation\/booking-rate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/reservation\/booking-rate"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/dashboard\/reservations\/count",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/reservations\/count",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/reservations\/count"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/dashboard\/payments-income\/count",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/payments-income\/count",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/payments-income\/count"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/dashboard\/admin-proprio\/count",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/admin-proprio\/count",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/admin-proprio\/count"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/dashboard\/admin-client\/count",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/admin-client\/count",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/admin-client\/count"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/dashboard\/comments\/count",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/comments\/count",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/comments\/count"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/payments\/reports",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/reports",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/reports"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/payments\/generate-report",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/generate-report",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/generate-report"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"month\":2,\"year\":\"8107\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/payments\/download-report\/{filename}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/download-report\/:filename",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/download-report\/:filename",
                            "variable": [
                                {
                                    "id": "filename",
                                    "key": "filename",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/payments\/{user_id}\/all-payments",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/:user_id\/all-payments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/:user_id\/all-payments",
                            "variable": [
                                {
                                    "id": "user_id",
                                    "key": "user_id",
                                    "value": "consequatur",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/payments\/{user_id}\/income-payments",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/:user_id\/income-payments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/:user_id\/income-payments",
                            "variable": [
                                {
                                    "id": "user_id",
                                    "key": "user_id",
                                    "value": "consequatur",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/payments\/{user_id}\/pending-payments",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/:user_id\/pending-payments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/:user_id\/pending-payments",
                            "variable": [
                                {
                                    "id": "user_id",
                                    "key": "user_id",
                                    "value": "consequatur",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/ratings",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ratings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ratings"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/ratings\/all-properties",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ratings\/all-properties",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ratings\/all-properties"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/ratings\/user\/properties",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ratings\/user\/properties",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ratings\/user\/properties"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/ratings\/property\/{propertyId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ratings\/property\/:propertyId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ratings\/property\/:propertyId",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/ratings\/property\/{propertyId}\/my",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ratings\/property\/:propertyId\/my",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ratings\/property\/:propertyId\/my",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/ratings\/property\/{propertyId}\/stats",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ratings\/property\/:propertyId\/stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ratings\/property\/:propertyId\/stats",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/ratings\/property\/{propertyId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ratings\/property\/:propertyId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ratings\/property\/:propertyId",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"stars\":5}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/ratings\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ratings\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ratings\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the rating."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"stars\":5}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/ratings\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ratings\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ratings\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the rating."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/expenses",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/expenses",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/expenses"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"amount\":73,\"description\":\"Dolorum amet iste laborum eius est dolor.\",\"date\":\"2026-02-03T17:41:58\",\"category_name\":\"dtdsufvyvddqamniihfqc\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/expenses",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/expenses",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/expenses"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/expenses\/statistics",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/expenses\/statistics",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/expenses\/statistics"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/expenses\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/expenses\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/expenses\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the expense."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/expenses\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/expenses\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/expenses\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the expense."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"amount\":73,\"description\":\"Dolorum amet iste laborum eius est dolor.\",\"date\":\"2026-02-03T17:41:58\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/expenses\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/expenses\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/expenses\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the expense."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/expense-categories",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/expense-categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/expense-categories"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/expense-categories",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/expense-categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/expense-categories"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/expense-categories\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/expense-categories\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/expense-categories\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the expense category."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/expense-categories\/statistics",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/expense-categories\/statistics",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/expense-categories\/statistics"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/expense-categories\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/expense-categories\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/expense-categories\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the expense category."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/expense-categories\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/expense-categories\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/expense-categories\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the expense category."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/incomes\/admin-proprio",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/incomes\/admin-proprio",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/incomes\/admin-proprio"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/incomes\/admin-proprio\/payout-status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/incomes\/admin-proprio\/payout-status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/incomes\/admin-proprio\/payout-status"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/incomes\/support",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/incomes\/support",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/incomes\/support"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/incomes\/statistics",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/incomes\/statistics",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/incomes\/statistics"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/incomes\/analytics",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/incomes\/analytics",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/incomes\/analytics"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Afficher les d\u00e9tails d'un revenu sp\u00e9cifique",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/incomes\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/incomes\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the income."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/withdrawals",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/withdrawals",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/withdrawals"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"admin_proprio_id\":\"consequatur\",\"amount\":13,\"currency\":\"usd\",\"description\":\"Amet iste laborum eius est dolor dolores.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/withdrawals",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/withdrawals",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/withdrawals"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/withdrawals\/stripe-connect\/{user_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/withdrawals\/stripe-connect\/:user_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/withdrawals\/stripe-connect\/:user_id",
                            "variable": [
                                {
                                    "id": "user_id",
                                    "key": "user_id",
                                    "value": "2",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/withdrawals\/stripe\/return",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/withdrawals\/stripe\/return",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/withdrawals\/stripe\/return"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/withdrawals\/stripe\/refresh",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/withdrawals\/stripe\/refresh",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/withdrawals\/stripe\/refresh"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/balances",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/balances",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/balances"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "R\u00e9cup\u00e9rer la liste des propri\u00e9taires \u00e9ligibles",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payouts\/eligible-owners",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payouts\/eligible-owners"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"currency\":\"eur\",\"min_amount\":73}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "R\u00e9cup\u00e9rer TOUS les propri\u00e9taires \u00e9ligibles (toutes devises) avec conversion",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payouts\/all-eligible-owners",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payouts\/all-eligible-owners"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"display_currency\":\"aed\",\"min_amount\":73}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "D\u00e9clencher un payout automatique",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payouts\/process",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payouts\/process"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"min_amount\":73,\"max_payouts\":13,\"currency\":\"eur\",\"dry_run\":false}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Obtenir les statistiques des payouts",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payouts\/stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payouts\/stats"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"start_date\":\"2026-02-03T17:41:59\",\"end_date\":\"2026-02-03T17:41:59\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Valider un propri\u00e9taire pour un payout",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payouts\/validate-owner\/:owner_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payouts\/validate-owner\/:owner_id",
                            "variable": [
                                {
                                    "id": "owner_id",
                                    "key": "owner_id",
                                    "value": "consequatur",
                                    "description": "The ID of the owner."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"currency\":\"gbp\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "R\u00e9cup\u00e9rer les param\u00e8tres de payout actuels",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payouts\/settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payouts\/settings"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Mettre \u00e0 jour les param\u00e8tres de payout",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payouts\/settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payouts\/settings"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"min_amount\":73,\"max_payouts\":13,\"currency\":\"usd\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/reservations\/{reservation}\/host-cancel",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reservations\/:reservation\/host-cancel",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reservations\/:reservation\/host-cancel",
                            "variable": [
                                {
                                    "id": "reservation",
                                    "key": "reservation",
                                    "value": "2",
                                    "description": "The reservation."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"reason\":\"vmqeopfuudtdsufvyvddq\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/host\/cancellations\/stats",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/host\/cancellations\/stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/host\/cancellations\/stats"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/host\/cancellations\/penalties",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/host\/cancellations\/penalties",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/host\/cancellations\/penalties"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/maintenances",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/maintenances",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/maintenances"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/maintenances",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/maintenances",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/maintenances"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"property_id\":\"consequatur\",\"user_id\":\"consequatur\",\"kind\":\"mqeopfuudtdsufvyvddqa\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"emergency\":\"urgent\",\"status\":\"in_progress\",\"reported_at\":\"2026-02-03T17:42:00\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/maintenances\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/maintenances\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/maintenances\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the maintenance."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/maintenances\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/maintenances\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/maintenances\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the maintenance."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"kind\":\"vmqeopfuudtdsufvyvddq\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"emergency\":\"important\",\"status\":\"completed\",\"reported_at\":\"2026-02-03T17:42:00\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/maintenances\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/maintenances\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/maintenances\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the maintenance."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/maintenances\/by-property\/{property_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/maintenances\/by-property\/:property_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/maintenances\/by-property\/:property_id",
                            "variable": [
                                {
                                    "id": "property_id",
                                    "key": "property_id",
                                    "value": "consequatur",
                                    "description": "The ID of the property."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/rapports_taxe",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/rapports_taxe",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/rapports_taxe"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/rapports_taxe\/export-csv",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/rapports_taxe\/export-csv",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/rapports_taxe\/export-csv"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/rapports_taxe\/export-pdf",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/rapports_taxe\/export-pdf",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/rapports_taxe\/export-pdf"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/marketplaces\/user_info_key",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/marketplaces\/user_info_key",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/marketplaces\/user_info_key"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/marketplaces\/user_property_key",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/marketplaces\/user_property_key",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/marketplaces\/user_property_key"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/marketplaces\/user_reservations_key",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/marketplaces\/user_reservations_key",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/marketplaces\/user_reservations_key"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/marketplaces\/user_payments_key",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/marketplaces\/user_payments_key",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/marketplaces\/user_payments_key"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/marketplaces\/info_user\/{key}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/marketplaces\/info_user\/:key",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/marketplaces\/info_user\/:key",
                            "variable": [
                                {
                                    "id": "key",
                                    "key": "key",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/marketplaces\/user_property\/{key}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/marketplaces\/user_property\/:key",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/marketplaces\/user_property\/:key",
                            "variable": [
                                {
                                    "id": "key",
                                    "key": "key",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/marketplaces\/user_reservations\/{key}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/marketplaces\/user_reservations\/:key",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/marketplaces\/user_reservations\/:key",
                            "variable": [
                                {
                                    "id": "key",
                                    "key": "key",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/marketplaces\/user_payments\/{key}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/marketplaces\/user_payments\/:key",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/marketplaces\/user_payments\/:key",
                            "variable": [
                                {
                                    "id": "key",
                                    "key": "key",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/properties\/properties\/grouped-by-location",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/properties\/grouped-by-location",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/properties\/grouped-by-location"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/privacy-terms",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/privacy-terms",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/privacy-terms"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/privacy-terms\/for-user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/privacy-terms\/for-user",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/privacy-terms\/for-user"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/privacy-terms",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/privacy-terms",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/privacy-terms"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/privacy-terms\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/privacy-terms\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/privacy-terms\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the privacy term."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/privacy-terms\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/privacy-terms\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/privacy-terms\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the privacy term."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/smart-locks\/providers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/providers",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/providers"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/smart-locks\/providers\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/providers\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/providers\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the provider."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/smart-locks\/providers\/{providerId}\/connect",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/providers\/:providerId\/connect",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/providers\/:providerId\/connect",
                            "variable": [
                                {
                                    "id": "providerId",
                                    "key": "providerId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/smart-locks\/providers\/{providerId}\/sync-locks",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/providers\/:providerId\/sync-locks",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/providers\/:providerId\/sync-locks",
                            "variable": [
                                {
                                    "id": "providerId",
                                    "key": "providerId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/smart-locks\/locks",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/locks",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/locks"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/smart-locks\/locks",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/locks",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/locks"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/smart-locks\/locks\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/locks\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/locks\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the lock."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/smart-locks\/locks\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/locks\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/locks\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the lock."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/smart-locks\/locks\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/locks\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/locks\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the lock."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/smart-locks\/locks\/{lockId}\/access-codes",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/locks\/:lockId\/access-codes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/locks\/:lockId\/access-codes",
                            "variable": [
                                {
                                    "id": "lockId",
                                    "key": "lockId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/smart-locks\/locks\/{lockId}\/access-codes",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/locks\/:lockId\/access-codes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/locks\/:lockId\/access-codes",
                            "variable": [
                                {
                                    "id": "lockId",
                                    "key": "lockId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/smart-locks\/locks\/{lockId}\/access-codes\/{accessCodeId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/locks\/:lockId\/access-codes\/:accessCodeId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/locks\/:lockId\/access-codes\/:accessCodeId",
                            "variable": [
                                {
                                    "id": "lockId",
                                    "key": "lockId",
                                    "value": "consequatur",
                                    "description": ""
                                },
                                {
                                    "id": "accessCodeId",
                                    "key": "accessCodeId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/smart-locks\/locks\/{lockId}\/access-logs",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/locks\/:lockId\/access-logs",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/locks\/:lockId\/access-logs",
                            "variable": [
                                {
                                    "id": "lockId",
                                    "key": "lockId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/smart-locks\/nuki\/smartlocks\/{connectionId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/nuki\/smartlocks\/:connectionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/nuki\/smartlocks\/:connectionId",
                            "variable": [
                                {
                                    "id": "connectionId",
                                    "key": "connectionId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/smart-locks\/nuki\/smartlocks\/{smartLockId}\/state",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/nuki\/smartlocks\/:smartLockId\/state",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/nuki\/smartlocks\/:smartLockId\/state",
                            "variable": [
                                {
                                    "id": "smartLockId",
                                    "key": "smartLockId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/smart-locks\/nuki\/smartlocks\/{smartLockId}\/lock",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/nuki\/smartlocks\/:smartLockId\/lock",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/nuki\/smartlocks\/:smartLockId\/lock",
                            "variable": [
                                {
                                    "id": "smartLockId",
                                    "key": "smartLockId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/smart-locks\/nuki\/smartlocks\/{smartLockId}\/unlock",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/nuki\/smartlocks\/:smartLockId\/unlock",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/nuki\/smartlocks\/:smartLockId\/unlock",
                            "variable": [
                                {
                                    "id": "smartLockId",
                                    "key": "smartLockId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/smart-locks\/nuki\/smartlocks\/{smartLockId}\/access-codes",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/nuki\/smartlocks\/:smartLockId\/access-codes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/nuki\/smartlocks\/:smartLockId\/access-codes",
                            "variable": [
                                {
                                    "id": "smartLockId",
                                    "key": "smartLockId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/smart-locks\/nuki\/smartlocks\/{smartLockId}\/access-codes",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/nuki\/smartlocks\/:smartLockId\/access-codes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/nuki\/smartlocks\/:smartLockId\/access-codes",
                            "variable": [
                                {
                                    "id": "smartLockId",
                                    "key": "smartLockId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/smart-locks\/nuki\/smartlocks\/{smartLockId}\/access-codes\/{authId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/nuki\/smartlocks\/:smartLockId\/access-codes\/:authId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/nuki\/smartlocks\/:smartLockId\/access-codes\/:authId",
                            "variable": [
                                {
                                    "id": "smartLockId",
                                    "key": "smartLockId",
                                    "value": "consequatur",
                                    "description": ""
                                },
                                {
                                    "id": "authId",
                                    "key": "authId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/smart-locks\/nuki\/smartlocks\/{smartLockId}\/access-codes\/{authId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/nuki\/smartlocks\/:smartLockId\/access-codes\/:authId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/nuki\/smartlocks\/:smartLockId\/access-codes\/:authId",
                            "variable": [
                                {
                                    "id": "smartLockId",
                                    "key": "smartLockId",
                                    "value": "consequatur",
                                    "description": ""
                                },
                                {
                                    "id": "authId",
                                    "key": "authId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/smart-locks\/nuki\/smartlocks\/{smartLockId}\/access-logs",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/nuki\/smartlocks\/:smartLockId\/access-logs",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/nuki\/smartlocks\/:smartLockId\/access-logs",
                            "variable": [
                                {
                                    "id": "smartLockId",
                                    "key": "smartLockId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/smart-locks\/nuki\/smartlocks\/{smartLockId}\/config",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/nuki\/smartlocks\/:smartLockId\/config",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/nuki\/smartlocks\/:smartLockId\/config",
                            "variable": [
                                {
                                    "id": "smartLockId",
                                    "key": "smartLockId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/smart-locks\/nuki\/smartlocks\/{smartLockId}\/config",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/nuki\/smartlocks\/:smartLockId\/config",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/nuki\/smartlocks\/:smartLockId\/config",
                            "variable": [
                                {
                                    "id": "smartLockId",
                                    "key": "smartLockId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/smart-locks\/nuki\/account",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/nuki\/account",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/nuki\/account"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/smart-locks\/nuki\/sync",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/smart-locks\/nuki\/sync",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/smart-locks\/nuki\/sync"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/properties\/{propertyId}\/smart-lock\/status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:propertyId\/smart-lock\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:propertyId\/smart-lock\/status",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/properties\/{propertyId}\/smart-lock\/sync",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:propertyId\/smart-lock\/sync",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:propertyId\/smart-lock\/sync",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/properties\/{propertyId}\/smart-lock\/reservations\/access-code",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:propertyId\/smart-lock\/reservations\/access-code",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:propertyId\/smart-lock\/reservations\/access-code",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/properties\/{propertyId}\/smart-lock\/reservations\/access-code",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:propertyId\/smart-lock\/reservations\/access-code",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:propertyId\/smart-lock\/reservations\/access-code",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/faqs",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/faqs",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/faqs"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/faqs",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/faqs",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/faqs"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"title\":\"consequatur\",\"description\":\"consequatur\",\"role\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/faqs\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/faqs\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/faqs\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the faq."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/faqs\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/faqs\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/faqs\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the faq."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"title\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/faqs\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/faqs\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/faqs\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "837",
                                    "description": "The ID of the faq."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/vrbo-connection\/channels-list",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/vrbo-connection\/channels-list",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/vrbo-connection\/channels-list"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/vrbo-connection\/authenticate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/vrbo-connection\/authenticate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/vrbo-connection\/authenticate"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"username\":\"consequatur\",\"password\":\"O[2UZ5ij-e\\\/dl4m{o,\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/espo-contacts",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/espo-contacts",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/espo-contacts"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Liste des contacts\nGET \/api\/v1\/crm\/contacts",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/crm\/contacts",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/crm\/contacts"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "FILTRAGE: Utilise la table locale espo_contacts pour filtrer par propri\u00e9taire",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "D\u00e9tail d'un contact\nGET \/api\/v1\/crm\/contacts\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/crm\/contacts\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/crm\/contacts\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the contact."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9er un contact\nPOST \/api\/v1\/crm\/contacts",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/crm\/contacts",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/crm\/contacts"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"firstName\":\"vmqeopfuudtdsufvyvddq\",\"lastName\":\"amniihfqcoynlazghdtqt\",\"emailAddress\":\"andreanne00@example.org\",\"phoneNumber\":\"wbpilpmufinllwloauydl\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Modifier un contact\nPUT \/api\/v1\/crm\/contacts\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/crm\/contacts\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/crm\/contacts\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the contact."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Supprimer un contact\nDELETE \/api\/v1\/crm\/contacts\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/crm\/contacts\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/crm\/contacts\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the contact."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Liste des notes d'un contact\nGET \/api\/v1\/crm\/contacts\/{id}\/notes",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/crm\/contacts\/:id\/notes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/crm\/contacts\/:id\/notes",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the contact."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Ajouter une note \u00e0 un contact\nPOST \/api\/v1\/crm\/contacts\/{id}\/notes",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/crm\/contacts\/:id\/notes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/crm\/contacts\/:id\/notes",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the contact."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"post\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Liste des leads de l'utilisateur connect\u00e9\nGET \/api\/v1\/crm\/leads",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/crm\/leads",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/crm\/leads"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9er un lead (stock\u00e9 localement + sync EspoCRM optionnel)\nPOST \/api\/v1\/crm\/leads",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/crm\/leads",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/crm\/leads"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"firstName\":\"vmqeopfuudtdsufvyvddq\",\"lastName\":\"amniihfqcoynlazghdtqt\",\"emailAddress\":\"andreanne00@example.org\",\"phoneNumber\":\"wbpilpmufinllwloauydl\",\"source\":\"consequatur\",\"status\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Convertir un lead en contact\nPOST \/api\/v1\/crm\/leads\/{id}\/convert",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/crm\/leads\/:id\/convert",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/crm\/leads\/:id\/convert",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the lead."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Liste des t\u00e2ches de l'utilisateur connect\u00e9\nGET \/api\/v1\/crm\/tasks",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/crm\/tasks",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/crm\/tasks"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9er une t\u00e2che (stock\u00e9e localement + sync EspoCRM optionnel)\nPOST \/api\/v1\/crm\/tasks",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/crm\/tasks",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/crm\/tasks"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"dateStart\":\"2026-02-03T17:42:04\",\"dateEnd\":\"2026-02-03T17:42:04\",\"priority\":\"High\",\"contactId\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Marquer une t\u00e2che comme termin\u00e9e\nPUT \/api\/v1\/crm\/tasks\/{id}\/complete",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/crm\/tasks\/:id\/complete",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/crm\/tasks\/:id\/complete",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the task."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Envoyer un email \u00e0 un contact\nPOST \/api\/v1\/crm\/emails\/send",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/crm\/emails\/send",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/crm\/emails\/send"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"to\":\"qkunze@example.com\",\"subject\":\"opfuudtdsufvyvddqamni\",\"body\":\"consequatur\",\"contactId\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Statistiques CRM de l'utilisateur connect\u00e9\nGET \/api\/v1\/crm\/stats",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/crm\/stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/crm\/stats"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/test-send-me-mail",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/test-send-me-mail",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/test-send-me-mail"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/feedback\/comment",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/feedback\/comment",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/feedback\/comment"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"booking_ref_code\":\"consequatur\",\"user_email\":\"carolyne.luettgen@example.org\",\"comment\":\"consequatur\",\"owner_response\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/feedback\/rating\/{propertyId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/feedback\/rating\/:propertyId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/feedback\/rating\/:propertyId",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"booking_ref_code\":\"consequatur\",\"user_email\":\"carolyne.luettgen@example.org\",\"stars\":2}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "\u2705 Afficher les infos de la r\u00e9servation \u00e0 partir du booking_ref_code",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/public-feedback\/:bookingRefCode",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/public-feedback\/:bookingRefCode",
                            "variable": [
                                {
                                    "id": "bookingRefCode",
                                    "key": "bookingRefCode",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "\u2705 Enregistrer un commentaire et une note publique",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/public-feedback\/:bookingRefCode",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/public-feedback\/:bookingRefCode",
                            "variable": [
                                {
                                    "id": "bookingRefCode",
                                    "key": "bookingRefCode",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"stars\":5,\"comment\":\"mqeopfuudtdsufvyvddqa\",\"email\":\"eloisa.harber@example.com\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Liste tous les rapports financiers\nGET \/api\/financial-reports",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/financial-reports",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/financial-reports"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Obtient un r\u00e9sum\u00e9 des rapports par type\nGET \/api\/financial-reports\/summary",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/financial-reports\/summary",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/financial-reports\/summary"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Obtient des statistiques en temps r\u00e9el (sans cr\u00e9er de rapport)\nGET \/api\/financial-reports\/statistics\/real-time",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/financial-reports\/statistics\/real-time",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/financial-reports\/statistics\/real-time"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"period_start\":\"2026-02-03T17:42:05\",\"period_end\":\"2107-03-05\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "G\u00e9n\u00e8re un nouveau rapport financier\nPOST \/api\/financial-reports\/generate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/financial-reports\/generate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/financial-reports\/generate"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"report_type\":\"quarterly\",\"period_start\":\"2026-02-03T17:42:05\",\"period_end\":\"2107-03-05\",\"notes\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Affiche un rapport financier sp\u00e9cifique\nGET \/api\/financial-reports\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/financial-reports\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/financial-reports\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the financial report."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Met \u00e0 jour un rapport financier\nPUT\/PATCH \/api\/financial-reports\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/financial-reports\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/financial-reports\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the financial report."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"notes\":\"consequatur\",\"status\":\"draft\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Met \u00e0 jour un rapport financier\nPUT\/PATCH \/api\/financial-reports\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/financial-reports\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/financial-reports\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the financial report."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"notes\":\"consequatur\",\"status\":\"draft\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Supprime un rapport financier\nDELETE \/api\/financial-reports\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/financial-reports\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/financial-reports\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the financial report."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Publie un rapport financier\nPOST \/api\/financial-reports\/{id}\/publish",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/financial-reports\/:id\/publish",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/financial-reports\/:id\/publish",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the financial report."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Archive un rapport financier\nPOST \/api\/financial-reports\/{id}\/archive",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/financial-reports\/:id\/archive",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/financial-reports\/:id\/archive",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the financial report."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Tester la connexion Booking.com via Channex\nCorps attendu (exemple):\n{\n  \"channel\": \"BookingCom\",\n  \"settings\": {\"hotel_id\": \"5868189\"}\n}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/booking\/test-connection",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/booking\/test-connection"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"channel\":\"consequatur\",\"settings\":[]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/ota\/booking\/connection-details",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/booking\/connection-details",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/booking\/connection-details"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"channel\":\"consequatur\",\"settings\":[]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9e (ou met \u00e0 jour) la connexion Booking.com pour une propri\u00e9t\u00e9 Channex donn\u00e9e",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/booking\/properties\/:propertyId\/connect",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/booking\/properties\/:propertyId\/connect",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"credentials\":[],\"options\":{\"auto_publish_ari\":false}}"
                        },
                        "description": "POST body attendu (exemple):\n{\n  \"credentials\": {\n    \"hotel_id\": \"1234567\",          \/\/ identifiant Booking.com (fourni par la doc\/partenaire)\n    \"legal_entity_id\": \"ABCDEF\",    \/\/ si requis\n    \"region\": \"EU\"                   \/\/ si requis\n  },\n  \"options\": {\n    \"auto_publish_ari\": true\n  }\n}",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Mappe les Room Types et Rate Plans locaux avec Booking.com via Channex.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/booking\/properties\/:propertyId\/map",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/booking\/properties\/:propertyId\/map",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"mappings\":[{\"room_type_external_id\":\"consequatur\",\"rate_plan_external_id\":\"consequatur\",\"ota_room_code\":\"consequatur\",\"ota_rate_code\":\"consequatur\"}]}"
                        },
                        "description": "On r\u00e9cup\u00e8re les `external_id` des ChannexRoomType\/ChannexRatePlan et on cr\u00e9e les mappages c\u00f4t\u00e9 channel.\n\nPOST body (exemple si Booking exige des codes c\u00f4t\u00e9 OTA):\n{\n  \"mappings\": [\n    { \"room_type_external_id\": \"RT_abc123\", \"ota_room_code\": \"12345\" },\n    { \"rate_plan_external_id\": \"RP_def456\", \"ota_rate_code\": \"BAR\" }\n  ]\n}",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Publie Availability \/ Rates \/ Restrictions (ARI) vers Booking.com via Channex",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/booking\/properties\/:propertyId\/publish-ari",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/booking\/properties\/:propertyId\/publish-ari",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Body (exemples simplifi\u00e9s):\n{\n  \"availability\": [ { ... } ],\n  \"rates\": [ { ... } ]\n}",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "R\u00e9cup\u00e8re le statut de la connexion Booking.com pour une propri\u00e9t\u00e9",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/booking\/properties\/:propertyId\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/booking\/properties\/:propertyId\/status",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9er\/mettre \u00e0 jour la connexion Trip.com pour une propri\u00e9t\u00e9\nPOST \/trip\/properties\/{propertyId}\/connect",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/trip\/properties\/:propertyId\/connect",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/trip\/properties\/:propertyId\/connect",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"hotel_code\":\"consequatur\",\"group_id\":\"98adc52b-966d-39db-809a-55902ee7228f\",\"title\":\"consequatur\",\"is_active\":true}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Mapper Room Types \/ Rate Plans\nPOST \/trip\/properties\/{propertyId}\/map",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/trip\/properties\/:propertyId\/map",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/trip\/properties\/:propertyId\/map",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"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}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Publier ARI (Availability, Rates, Inventory)\nPOST \/trip\/properties\/{propertyId}\/publish-ari",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/trip\/properties\/:propertyId\/publish-ari",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/trip\/properties\/:propertyId\/publish-ari",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"connection_id\":\"66529e01-d113-3473-8d6f-9e11e09332ea\",\"start_date\":\"2026-02-03T17:42:05\",\"end_date\":\"2107-03-05\",\"room_types\":[]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Statut de la connexion\nGET \/trip\/properties\/{propertyId}\/status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/trip\/properties\/:propertyId\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/trip\/properties\/:propertyId\/status",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9er\/mettre \u00e0 jour la connexion Hopper's Home pour une propri\u00e9t\u00e9\nPOST \/api\/v1\/hopper-homes\/properties\/{propertyId}\/connect",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/hopper-homes\/properties\/:propertyId\/connect",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/hopper-homes\/properties\/:propertyId\/connect",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"host_email\":\"qkunze@example.com\",\"host_name\":\"opfuudtdsufvyvddqamni\",\"auto_publish\":false}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9er\/\u00e9diter le listing sur Hopper's Home\nPOST \/api\/v1\/hopper-homes\/properties\/{propertyId}\/listings",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/hopper-homes\/properties\/:propertyId\/listings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/hopper-homes\/properties\/:propertyId\/listings",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Configurer la tarification sur Hopper's Home\nPOST \/api\/v1\/hopper-homes\/properties\/{propertyId}\/pricing",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/hopper-homes\/properties\/:propertyId\/pricing",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/hopper-homes\/properties\/:propertyId\/pricing",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"nightly_price\":73,\"currency\":\"USD\",\"cancellation_policy\":\"strict\",\"cleaning_fee\":45,\"additional_guest_fee\":56}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Configurer les r\u00e8gles de disponibilit\u00e9\nPOST \/api\/v1\/hopper-homes\/properties\/{propertyId}\/availability-rules",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/hopper-homes\/properties\/:propertyId\/availability-rules",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/hopper-homes\/properties\/:propertyId\/availability-rules",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"min_stay\":73,\"max_stay\":45,\"check_in_days\":[\"sun\"],\"min_lead_time_hours\":56,\"max_lead_time_days\":17}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Activer\/d\u00e9sactiver le listing\nPOST \/api\/v1\/hopper-homes\/properties\/{propertyId}\/listings\/{listingId}\/status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/hopper-homes\/properties\/:propertyId\/listings\/:listingId\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/hopper-homes\/properties\/:propertyId\/listings\/:listingId\/status",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                },
                                {
                                    "id": "listingId",
                                    "key": "listingId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"inactive\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Statut de la connexion Hopper's Home\nGET \/api\/v1\/hopper-homes\/properties\/{propertyId}\/status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/hopper-homes\/properties\/:propertyId\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/hopper-homes\/properties\/:propertyId\/status",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/ota\/google-hotel-ads\/google-hotel-ads",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/google-hotel-ads\/google-hotel-ads",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/google-hotel-ads\/google-hotel-ads"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/ota\/google-hotel-ads\/google-hotel-ads",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/google-hotel-ads\/google-hotel-ads",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/google-hotel-ads\/google-hotel-ads"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"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\"}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/ota\/google-hotel-ads\/google-hotel-ads\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/google-hotel-ads\/google-hotel-ads\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/google-hotel-ads\/google-hotel-ads\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the google hotel ad."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"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\"}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/ota\/google-hotel-ads\/google-hotel-ads\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/google-hotel-ads\/google-hotel-ads\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/google-hotel-ads\/google-hotel-ads\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the google hotel ad."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/ota\/expedia\/expedia",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/expedia\/expedia",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/expedia\/expedia"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/ota\/expedia\/expedia",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/expedia\/expedia",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/expedia\/expedia"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"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\":false}}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/ota\/expedia\/expedia\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/expedia\/expedia\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/expedia\/expedia\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the expedium."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"title\":\"consequatur\",\"group_id\":\"98adc52b-966d-39db-809a-55902ee7228f\",\"property_id\":\"d48a46b6-3a18-3763-951d-66b7fdb284ae\",\"hotel_id\":\"consequatur\",\"min_stay_type\":\"Arrival\",\"is_active\":true,\"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}}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/ota\/expedia\/expedia\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/expedia\/expedia\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/expedia\/expedia\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the expedium."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/ota\/expedia\/test-connection",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/expedia\/test-connection",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/expedia\/test-connection"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"hotel_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/ota\/expedia\/mapping-details",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/expedia\/mapping-details",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/expedia\/mapping-details"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"hotel_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/ota\/expedia\/connection-details",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ota\/expedia\/connection-details",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ota\/expedia\/connection-details"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"hotel_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "R\u00e9cup\u00e8re le mapping OTA pour Agoda.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/agoda\/map\/agoda",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/agoda\/map\/agoda"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "POST \/api\/v1\/agoda\/map\/agoda\nBody: { \"hotel_id\": \"xxxx\" }",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9e le channel Agoda sur Channex pour une propri\u00e9t\u00e9 donn\u00e9e.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/agoda\/create\/channel",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/agoda\/create\/channel"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "POST \/api\/v1\/agoda\/create\/channel\nBody: { \"group_id\": \"...\", \"property_id\": \"...\", \"hotel_id\": \"...\", \"rate_plans\": [...] }",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "R\u00e9cup\u00e8re les d\u00e9tails de connexion Agoda via Channex.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/agoda\/connection-details",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/agoda\/connection-details"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "POST \/api\/v1\/agoda\/connection-details\nBody: { \"hotel_id\": \"xxxx\" }",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "R\u00e9cup\u00e8re le mapping OTA pour Agoda.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/traveloka\/map\/traveloka",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/traveloka\/map\/traveloka"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "POST \/api\/v1\/agoda\/map\/agoda\nBody: { \"hotel_id\": \"xxxx\" }",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9e le channel Agoda sur Channex pour une propri\u00e9t\u00e9 donn\u00e9e.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/traveloka\/create\/channel",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/traveloka\/create\/channel"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "POST \/api\/v1\/agoda\/create\/channel\nBody: { \"group_id\": \"...\", \"property_id\": \"...\", \"hotel_id\": \"...\", \"rate_plans\": [...] }",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "roomTypesOptions\n- Ces deux endpoints attendent un param\u00e8tre de query filter[property_id].",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/traveloka\/room-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/traveloka\/room-types"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "- Ils redirigent vers le service qui interroge les endpoints options de Channex.\n- Renvoient 422 si filter.property_id manquant, 500 en cas d'erreur serveur.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "ratePlansOptions :\n- Ces deux endpoints attendent un param\u00e8tre de query filter[property_id].",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/traveloka\/rate-plans",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/traveloka\/rate-plans"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "- Ils redirigent vers le service qui interroge les endpoints options de Channex.\n- Renvoient 422 si filter.property_id manquant, 500 en cas d'erreur serveur.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/currencies",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/currencies",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/currencies"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/currencies\/convert",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/currencies\/convert",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/currencies\/convert"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"amount\":73,\"from\":\"consequatur\",\"to\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/currencies\/convert-by-id",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/currencies\/convert-by-id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/currencies\/convert-by-id"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"amount\":73,\"from_id\":17,\"to_id\":17}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/currencies\/exchange-rate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/currencies\/exchange-rate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/currencies\/exchange-rate"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"fromCode\":\"consequatur\",\"toCode\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/currencies\/default-currency",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/currencies\/default-currency",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/currencies\/default-currency"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/currencies\/active-currency",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/currencies\/active-currency",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/currencies\/active-currency"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/currencies\/set-default",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/currencies\/set-default",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/currencies\/set-default"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"currency_code\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/currencies\/update-rates",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/currencies\/update-rates",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/currencies\/update-rates"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/currencies\/toggle-status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/currencies\/toggle-status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/currencies\/toggle-status"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"currency_code\":\"consequatur\",\"is_active\":true}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/document_shared_mail",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/document_shared_mail",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/document_shared_mail"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Liste toutes les cat\u00e9gories avec leurs templates\nGET \/api\/notifications\/categories",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail-notifications\/categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail-notifications\/categories"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Liste les templates d'une cat\u00e9gorie avec leurs configurations\nGET \/api\/notifications\/categories\/{categorySlug}\/templates",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail-notifications\/categories\/:categorySlug\/templates",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail-notifications\/categories\/:categorySlug\/templates",
                            "variable": [
                                {
                                    "id": "categorySlug",
                                    "key": "categorySlug",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "R\u00e9cup\u00e8re les d\u00e9tails d'un template sp\u00e9cifique\nGET \/api\/notifications\/templates\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail-notifications\/templates\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail-notifications\/templates\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the template."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Active\/D\u00e9sactive un template\nPATCH \/api\/notifications\/templates\/{id}\/toggle",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail-notifications\/templates\/:id\/toggle",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail-notifications\/templates\/:id\/toggle",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the template."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Liste les placeholders disponibles pour un template\nGET \/api\/notifications\/templates\/{id}\/placeholders",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail-notifications\/templates\/:id\/placeholders",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail-notifications\/templates\/:id\/placeholders",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the template."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Historique des notifications envoy\u00e9es\nGET \/api\/notifications\/sent",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail-notifications\/sent",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail-notifications\/sent"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "D\u00e9tails d'une notification envoy\u00e9e\nGET \/api\/notifications\/sent\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail-notifications\/sent\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail-notifications\/sent\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the sent."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Renvoyer une notification \u00e9chou\u00e9e\nPOST \/api\/notifications\/sent\/{id}\/retry",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail-notifications\/sent\/:id\/retry",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail-notifications\/sent\/:id\/retry",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the sent."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Statistiques des notifications\nGET \/api\/notifications\/stats",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mail-notifications\/stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mail-notifications\/stats"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Liste des offres d'emploi (Public)\nGET \/api\/v1\/job-offers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/job-offers",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/job-offers"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "D\u00e9tails d'une offre d'emploi (Public)\nGET \/api\/v1\/job-offers\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/job-offers\/:jobOffer_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/job-offers\/:jobOffer_id",
                            "variable": [
                                {
                                    "id": "jobOffer_id",
                                    "key": "jobOffer_id",
                                    "value": "consequatur",
                                    "description": "The ID of the jobOffer."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Postuler \u00e0 une offre",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/job-applications\/job-offers\/:jobOffer_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/job-applications\/job-offers\/:jobOffer_id",
                            "variable": [
                                {
                                    "id": "jobOffer_id",
                                    "key": "jobOffer_id",
                                    "value": "3",
                                    "description": "The ID of the jobOffer."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "full_name",
                                    "value": "vmqeopfuudtdsufvyvddq",
                                    "type": "text",
                                    "description": "Must not be greater than 255 characters."
                                },
                                {
                                    "key": "email",
                                    "value": "kunde.eloisa@example.com",
                                    "type": "text",
                                    "description": "Must be a valid email address. Must not be greater than 255 characters."
                                },
                                {
                                    "key": "phone",
                                    "value": "hfqcoynlazghdtqtq",
                                    "type": "text",
                                    "description": "Must not be greater than 20 characters."
                                },
                                {
                                    "key": "cover_letter",
                                    "value": "xbajwbpilpmufinllwloa",
                                    "type": "text",
                                    "description": "Must not be greater than 5000 characters."
                                },
                                {
                                    "key": "cv",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Mes candidatures (utilisateur connect\u00e9)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/job-applications\/my-applications",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/job-applications\/my-applications"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9er une offre d'emploi (Admin)\nPOST \/api\/v1\/job-offers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/job-offers\/store",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/job-offers\/store"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"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\":true,\"expires_at\":\"2026-02-03T17:42:08\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Modifier une offre d'emploi (Admin)\nPUT \/api\/v1\/job-offers\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/job-offers\/:jobOffer_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/job-offers\/:jobOffer_id",
                            "variable": [
                                {
                                    "id": "jobOffer_id",
                                    "key": "jobOffer_id",
                                    "value": "3",
                                    "description": "The ID of the jobOffer."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"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\":true,\"is_active\":false,\"expires_at\":\"2026-02-03T17:42:08\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Supprimer une offre d'emploi (Admin)\nDELETE \/api\/v1\/job-offers\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/job-offers\/:jobOffer_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/job-offers\/:jobOffer_id",
                            "variable": [
                                {
                                    "id": "jobOffer_id",
                                    "key": "jobOffer_id",
                                    "value": "3",
                                    "description": "The ID of the jobOffer."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Liste toutes les candidatures (admin uniquement)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/applications",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/applications"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Candidatures d'une offre sp\u00e9cifique (admin uniquement)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/applications\/job-offers\/:jobOffer_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/applications\/job-offers\/:jobOffer_id",
                            "variable": [
                                {
                                    "id": "jobOffer_id",
                                    "key": "jobOffer_id",
                                    "value": "3",
                                    "description": "The ID of the jobOffer."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Afficher une candidature sp\u00e9cifique (admin uniquement)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/applications\/:application_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/applications\/:application_id",
                            "variable": [
                                {
                                    "id": "application_id",
                                    "key": "application_id",
                                    "value": "17",
                                    "description": "The ID of the application."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Supprimer une candidature (admin uniquement)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/applications\/:application_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/applications\/:application_id",
                            "variable": [
                                {
                                    "id": "application_id",
                                    "key": "application_id",
                                    "value": "17",
                                    "description": "The ID of the application."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Liste tous les documents disponibles",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/documents",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/documents"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "R\u00e9cup\u00e8re les informations d'un document sp\u00e9cifique",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/documents\/:filename",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/documents\/:filename",
                            "variable": [
                                {
                                    "id": "filename",
                                    "key": "filename",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "G\u00e9n\u00e8re la configuration pour l'\u00e9diteur OnlyOffice (pour iframe)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/onlyoffice\/editor",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/onlyoffice\/editor"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"file_url\":\"http:\\\/\\\/kunze.biz\\\/iste-laborum-eius-est-dolor.html\",\"mode\":\"view\",\"document_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "G\u00e9n\u00e8re une URL compl\u00e8te pour l'iframe OnlyOffice",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/onlyoffice\/iframe",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/onlyoffice\/iframe"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"file_url\":\"http:\\\/\\\/kunze.biz\\\/iste-laborum-eius-est-dolor.html\",\"mode\":\"edit\",\"document_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Proxy pour le script OnlyOffice (\u00e9vite les probl\u00e8mes CORS)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/onlyoffice\/script",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/onlyoffice\/script"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Callback OnlyOffice pour recevoir les modifications du document",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/onlyoffice\/callback",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/onlyoffice\/callback"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Servir les documents du dossier public\/document_pdf\nCette route permet \u00e0 OnlyOffice d'acc\u00e9der aux documents",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/document_pdf\/:filename",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/document_pdf\/:filename",
                            "variable": [
                                {
                                    "id": "filename",
                                    "key": "filename",
                                    "value": "2UZ5i",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Servir un document par son ID (pour OnlyOffice)\nCette route permet \u00e0 OnlyOffice d'acc\u00e9der aux documents stock\u00e9s dans storage",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/onlyoffice\/document\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/onlyoffice\/document\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the document."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Ouvrir un document partag\u00e9 via un lien public dans OnlyOffice.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/documents\/share\/:token",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/documents\/share\/:token",
                            "variable": [
                                {
                                    "id": "token",
                                    "key": "token",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "GET \/api\/v1\/documents\/share\/{token}",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9er un compte Nextcloud pour l'utilisateur connect\u00e9",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/nextcloud\/account\/create",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/nextcloud\/account\/create"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Obtenir les informations du compte Nextcloud",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/nextcloud\/account",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/nextcloud\/account"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Obtenir les informations d'authentification pour se connecter \u00e0 Nextcloud",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/nextcloud\/account\/credentials",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/nextcloud\/account\/credentials"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9er un dossier dans Nextcloud",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/nextcloud\/folder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/nextcloud\/folder"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"folder_name\":\"vmqeopfuudtdsufvyvddq\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Upload un fichier vers Nextcloud",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/nextcloud\/upload",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/nextcloud\/upload"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "path",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "100 MB max."
                                },
                                {
                                    "key": "file",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9er un lien de partage public",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/nextcloud\/share",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/nextcloud\/share"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"path\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Redirection vers Nextcloud avec auto-login (nouvel onglet)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/nextcloud\/redirect",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/nextcloud\/redirect"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "\u2b50 NOUVELLE API : G\u00e9n\u00e9rer un lien d'acc\u00e8s unique",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/nextcloud\/generate-link",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/nextcloud\/generate-link"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "POST \/api\/v1\/nextcloud\/generate-link\n\nRetourne un lien que le frontend peut utiliser\nLe client clique sur ce lien et est redirig\u00e9 vers Nextcloud",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Lister les documents Nextcloud de l'utilisateur",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/nextcloud\/documents",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/nextcloud\/documents"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "GET \/api\/v1\/nextcloud\/documents",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Ouvrir un document dans OnlyOffice",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/nextcloud\/documents\/open",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/nextcloud\/documents\/open"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"file_path\":\"consequatur\"}"
                        },
                        "description": "POST \/api\/v1\/nextcloud\/documents\/open\nBody: { \"file_path\": \"\/Documents\/fichier.docx\" }",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "G\u00e9n\u00e9rer une page HTML avec OnlyOffice int\u00e9gr\u00e9",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/nextcloud\/documents\/editor",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/nextcloud\/documents\/editor"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"file_path\":\"consequatur\"}"
                        },
                        "description": "GET \/api\/v1\/nextcloud\/documents\/editor?file_path=\/Documents\/fichier.docx",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Callback OnlyOffice pour la sauvegarde",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/nextcloud\/documents\/callback",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/nextcloud\/documents\/callback"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "POST \/api\/v1\/nextcloud\/documents\/callback",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Endpoint UserInfo pour OAuth2\/OIDC",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/oauth\/userinfo",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/oauth\/userinfo"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "GET \/oauth\/userinfo\n\nRetourne les informations de l'utilisateur authentifi\u00e9",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "\u2b50 Redirection SSO vers Nextcloud (OAuth2)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/nextcloud\/sso-redirect",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/nextcloud\/sso-redirect"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "GET \/api\/v1\/nextcloud\/sso-redirect\n\nRedirige l'utilisateur vers Nextcloud avec authentification SSO automatique",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Endpoint Discovery pour OpenID Connect",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/.well-known\/openid-configuration",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/.well-known\/openid-configuration"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "GET \/.well-known\/openid-configuration\n\nRetourne la configuration OIDC du serveur",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Endpoint JWKS (JSON Web Key Set)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/oauth\/jwks",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/oauth\/jwks"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "GET \/oauth\/jwks\n\nRetourne les cl\u00e9s publiques pour v\u00e9rifier les JWT",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "R\u00e9cup\u00e9rer les filtres disponibles (Public)\nGET \/api\/v1\/job-offers\/filters",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/job-offers\/filters",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/job-offers\/filters"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "D\u00e9tails d'une offre d'emploi (Public)\nGET \/api\/v1\/job-offers\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/job-offers\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/job-offers\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "3",
                                    "description": "The ID of the job offer."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9er une offre d'emploi (Admin)\nPOST \/api\/v1\/job-offers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/job-offers",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/job-offers"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"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\":true,\"expires_at\":\"2026-02-03T17:42:12\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Modifier une offre d'emploi (Admin)\nPUT \/api\/v1\/job-offers\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/job-offers\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/job-offers\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "3",
                                    "description": "The ID of the job offer."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"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\":\"2026-02-03T17:42:12\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Supprimer une offre d'emploi (Admin)\nDELETE \/api\/v1\/job-offers\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/job-offers\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/job-offers\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "3",
                                    "description": "The ID of the job offer."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Liste des services annexes actifs (route publique)\nGET \/api\/v1\/annex-services\/active",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/annex-services\/active",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/annex-services\/active"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Liste des services annexes disponibles pour l'utilisateur connect\u00e9\nGET \/api\/v1\/annex-services",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/annex-services",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/annex-services"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9er un nouveau service annexe (admin)\nPOST \/api\/v1\/annex-services",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/annex-services",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/annex-services"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"description\":\"Dolores molestias ipsam sit.\",\"icon\":\"hfqcoynlazghdtqtqxbaj\",\"admin_link\":\"wbpilpmufinllwloauydl\",\"client_link\":\"smsjuryvojcybzvrbyick\",\"is_active\":true}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Obtenir les d\u00e9tails d'un service sp\u00e9cifique\nGET \/api\/v1\/annex-services\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/annex-services\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/annex-services\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the annex service."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Mettre \u00e0 jour un service annexe (admin)\nPUT \/api\/v1\/annex-services\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/annex-services\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/annex-services\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the annex service."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"description\":\"Dolores molestias ipsam sit.\",\"icon\":\"hfqcoynlazghdtqtqxbaj\",\"admin_link\":\"wbpilpmufinllwloauydl\",\"client_link\":\"smsjuryvojcybzvrbyick\",\"is_active\":true}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Supprimer un service annexe (admin)\nDELETE \/api\/v1\/annex-services\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/annex-services\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/annex-services\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the annex service."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Activer\/d\u00e9sactiver un service (admin)\nPATCH \/api\/v1\/annex-services\/{id}\/toggle-status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/annex-services\/:id\/toggle-status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/annex-services\/:id\/toggle-status",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the annex service."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Liste des dashboards (pour les propri\u00e9taires - uniquement actifs)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/metabase-dashboards\/active",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/metabase-dashboards\/active"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Liste compl\u00e8te des dashboards (pour le support)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/metabase-dashboards\/admin",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/metabase-dashboards\/admin"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9er un nouveau dashboard",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/metabase-dashboards",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/metabase-dashboards"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"dashboard_id\":13,\"is_active\":true,\"sort_order\":17}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Afficher un dashboard",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/metabase-dashboards\/:metabaseDashboard_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/metabase-dashboards\/:metabaseDashboard_id",
                            "variable": [
                                {
                                    "id": "metabaseDashboard_id",
                                    "key": "metabaseDashboard_id",
                                    "value": "1",
                                    "description": "The ID of the metabaseDashboard."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Mettre \u00e0 jour un dashboard",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/metabase-dashboards\/:metabaseDashboard_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/metabase-dashboards\/:metabaseDashboard_id",
                            "variable": [
                                {
                                    "id": "metabaseDashboard_id",
                                    "key": "metabaseDashboard_id",
                                    "value": "1",
                                    "description": "The ID of the metabaseDashboard."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"dashboard_id\":13,\"is_active\":false,\"sort_order\":17}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Supprimer un dashboard",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/metabase-dashboards\/:metabaseDashboard_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/metabase-dashboards\/:metabaseDashboard_id",
                            "variable": [
                                {
                                    "id": "metabaseDashboard_id",
                                    "key": "metabaseDashboard_id",
                                    "value": "1",
                                    "description": "The ID of the metabaseDashboard."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Activer\/D\u00e9sactiver un dashboard",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/metabase-dashboards\/:metabaseDashboard_id\/toggle",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/metabase-dashboards\/:metabaseDashboard_id\/toggle",
                            "variable": [
                                {
                                    "id": "metabaseDashboard_id",
                                    "key": "metabaseDashboard_id",
                                    "value": "1",
                                    "description": "The ID of the metabaseDashboard."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Obtenir l'URL d'acc\u00e8s pour un service sp\u00e9cifique\nGET \/api\/v1\/annex-services\/{id}\/access-url",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/annex-services\/:id\/access-url",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/annex-services\/:id\/access-url",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the annex service."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "G\u00e9n\u00e8re un JWT Mercure SUBSCRIBER et le place dans un cookie s\u00e9curis\u00e9",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mercure\/subscribe",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mercure\/subscribe"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "R\u00e9voque le JWT Mercure en supprimant le cookie",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mercure\/unsubscribe",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mercure\/unsubscribe"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "V\u00e9rifie le statut de la connexion Mercure",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mercure\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mercure\/status"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Retourner l'URL d'un dashboard pour le propri\u00e9taire connect\u00e9\nGET \/api\/v1\/metabase\/dashboard?dashboard_id=3",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/metabase\/dashboard",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/metabase\/dashboard"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Retourner l'URL d'une question\/chart sp\u00e9cifique\nGET \/api\/v1\/metabase\/question?question_id=5",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/metabase\/question",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/metabase\/question"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9e un nouveau plan d'abonnement\nPOST \/api\/v1\/subscription-plans",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscription-plans",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscription-plans"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slug\":\"consequatur\",\"name\":\"mqeopfuudtdsufvyvddqa\",\"subtitle\":\"mniihfqcoynlazghdtqtq\",\"base_price_monthly\":80,\"commission_rate\":2,\"max_ota_channels\":17,\"max_properties\":17,\"display_order\":17,\"is_active\":false,\"is_popular\":true}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Met \u00e0 jour un plan d'abonnement\nPUT \/api\/v1\/subscription-plans\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscription-plans\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscription-plans\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the subscription plan."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"subtitle\":\"amniihfqcoynlazghdtqt\",\"base_price_monthly\":56,\"commission_rate\":23,\"max_ota_channels\":17,\"max_properties\":17,\"display_order\":17,\"is_active\":false,\"is_popular\":false}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Supprime un plan d'abonnement\nDELETE \/api\/v1\/subscription-plans\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscription-plans\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscription-plans\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the subscription plan."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "ADMIN: Cr\u00e9er un abonnement avec promotions personnalis\u00e9es\nPOST \/api\/v1\/subscriptions\/admin\/create",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscriptions\/admin\/create",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscriptions\/admin\/create"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_id\":17,\"plan_slug\":\"consequatur\",\"billing_period\":\"2years\",\"properties_count\":13,\"custom_discount_percent\":16,\"custom_free_months\":5,\"start_date\":\"2107-03-05\",\"notes\":\"mqeopfuudtdsufvyvddqa\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Change de plan d'abonnement (upgrade\/downgrade)\nPOST \/api\/v1\/subscriptions\/change-plan",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscriptions\/change-plan",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscriptions\/change-plan"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"plan_slug\":\"consequatur\",\"billing_period\":\"annual\",\"properties_count\":45}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "V\u00e9rifie le statut d'une session Checkout et active l'abonnement\nGET \/api\/v1\/subscriptions\/verify-payment?session_id=xxx",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscriptions\/verify-payment",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscriptions\/verify-payment"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"session_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "R\u00e9active un abonnement annul\u00e9\nPOST \/api\/v1\/subscriptions\/reactivate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscriptions\/reactivate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscriptions\/reactivate"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Webhook Stripe pour traiter les \u00e9v\u00e9nements d'abonnement\nPOST \/api\/v1\/stripe\/subscription-webhook",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/stripe\/subscription-webhook",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/stripe\/subscription-webhook"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "V\u00e9rifie le paiement (route publique pour le callback Stripe)\nGET \/api\/v1\/subscription-payment\/verify?session_id=xxx",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscription-payment\/verify",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscription-payment\/verify"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"session_id\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Liste toutes les cat\u00e9gories avec leurs fonctionnalit\u00e9s\nGET \/api\/v1\/features\/categories",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/features\/categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/features\/categories"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Liste toutes les fonctionnalit\u00e9s\nGET \/api\/v1\/features",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/features",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/features"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9e une nouvelle cat\u00e9gorie\nPOST \/api\/v1\/features\/categories",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/features\/categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/features\/categories"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slug\":\"vmqeopfuudtdsufvyvddq\",\"name\":\"amniihfqcoynlazghdtqt\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"icon\":\"dtdsufvyvddqamniihfqc\",\"display_order\":17}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Met \u00e0 jour une cat\u00e9gorie\nPUT \/api\/v1\/features\/categories\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/features\/categories\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/features\/categories\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the category."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"icon\":\"dtdsufvyvddqamniihfqc\",\"display_order\":17,\"is_active\":true}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Supprime une cat\u00e9gorie\nDELETE \/api\/v1\/features\/categories\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/features\/categories\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/features\/categories\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the category."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9e une nouvelle fonctionnalit\u00e9\nPOST \/api\/v1\/features",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/features",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/features"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"category_id\":\"consequatur\",\"slug\":\"mqeopfuudtdsufvyvddqa\",\"name\":\"mniihfqcoynlazghdtqtq\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"api_route_pattern\":\"consequatur\",\"api_methods\":[\"DELETE\"],\"is_premium\":false,\"display_order\":17}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Met \u00e0 jour une fonctionnalit\u00e9\nPUT \/api\/v1\/features\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/features\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/features\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the feature."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vmqeopfuudtdsufvyvddq\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"api_route_pattern\":\"consequatur\",\"api_methods\":[\"PUT\"],\"is_premium\":true,\"is_active\":true,\"display_order\":17}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Supprime une fonctionnalit\u00e9\nDELETE \/api\/v1\/features\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/features\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/features\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the feature."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "R\u00e9cup\u00e8re les fonctionnalit\u00e9s d'un plan avec leur configuration\nGET \/api\/v1\/subscription-plans\/{planId}\/features",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscription-plans\/:planId\/features",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscription-plans\/:planId\/features",
                            "variable": [
                                {
                                    "id": "planId",
                                    "key": "planId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Attribue une fonctionnalit\u00e9 \u00e0 un plan\nPOST \/api\/v1\/subscription-plans\/{planId}\/features",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscription-plans\/:planId\/features",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscription-plans\/:planId\/features",
                            "variable": [
                                {
                                    "id": "planId",
                                    "key": "planId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"feature_id\":\"consequatur\",\"limit_value\":44,\"limit_period\":\"yearly\",\"allowed_methods\":[\"PATCH\"],\"is_enabled\":false}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Met \u00e0 jour la configuration d'une fonctionnalit\u00e9 pour un plan\nPUT \/api\/v1\/subscription-plans\/{planId}\/features\/{featureId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscription-plans\/:planId\/features\/:featureId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscription-plans\/:planId\/features\/:featureId",
                            "variable": [
                                {
                                    "id": "planId",
                                    "key": "planId",
                                    "value": "consequatur",
                                    "description": ""
                                },
                                {
                                    "id": "featureId",
                                    "key": "featureId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"limit_value\":73,\"limit_period\":\"monthly\",\"allowed_methods\":[\"PATCH\"],\"is_enabled\":false}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Retire une fonctionnalit\u00e9 d'un plan\nDELETE \/api\/v1\/subscription-plans\/{planId}\/features\/{featureId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscription-plans\/:planId\/features\/:featureId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscription-plans\/:planId\/features\/:featureId",
                            "variable": [
                                {
                                    "id": "planId",
                                    "key": "planId",
                                    "value": "consequatur",
                                    "description": ""
                                },
                                {
                                    "id": "featureId",
                                    "key": "featureId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Attribution en masse de fonctionnalit\u00e9s \u00e0 un plan\nPOST \/api\/v1\/subscription-plans\/{planId}\/features\/bulk",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscription-plans\/:planId\/features\/bulk",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscription-plans\/:planId\/features\/bulk",
                            "variable": [
                                {
                                    "id": "planId",
                                    "key": "planId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"features\":[{\"feature_id\":\"consequatur\",\"limit_value\":44,\"limit_period\":\"monthly\",\"is_enabled\":true}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Copie les fonctionnalit\u00e9s d'un plan vers un autre\nPOST \/api\/v1\/subscription-plans\/{planId}\/features\/copy-from\/{sourcePlanId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscription-plans\/:planId\/features\/copy-from\/:sourcePlanId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscription-plans\/:planId\/features\/copy-from\/:sourcePlanId",
                            "variable": [
                                {
                                    "id": "planId",
                                    "key": "planId",
                                    "value": "consequatur",
                                    "description": ""
                                },
                                {
                                    "id": "sourcePlanId",
                                    "key": "sourcePlanId",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "R\u00e9cup\u00e8re les statistiques d'utilisation de l'utilisateur connect\u00e9\nGET \/api\/v1\/features\/usage",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/features\/usage",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/features\/usage"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "V\u00e9rifie si une fonctionnalit\u00e9 peut \u00eatre utilis\u00e9e\nGET \/api\/v1\/features\/check\/{featureSlug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/features\/check\/:featureSlug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/features\/check\/:featureSlug",
                            "variable": [
                                {
                                    "id": "featureSlug",
                                    "key": "featureSlug",
                                    "value": "hvxi",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Synchronise les compteurs avec la base de donn\u00e9es\nPOST \/api\/v1\/features\/usage\/sync",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/features\/usage\/sync",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/features\/usage\/sync"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "R\u00e9cup\u00e8re l'\u00e9tat actuel du syst\u00e8me d'abonnement\nGET \/api\/v1\/subscription-system\/status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscription-system\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscription-system\/status"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "V\u00e9rifie si le syst\u00e8me d'abonnement est activ\u00e9\nGET \/api\/v1\/subscription-system\/is-enabled",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscription-system\/is-enabled",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscription-system\/is-enabled"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "V\u00e9rifie si les pages d'abonnement doivent \u00eatre affich\u00e9es\nGET \/api\/v1\/subscription-system\/show-pages",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscription-system\/show-pages",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscription-system\/show-pages"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "V\u00e9rifie l'acc\u00e8s \u00e0 une fonctionnalit\u00e9 en tenant compte du toggle\nGET \/api\/v1\/subscription-system\/check-feature\/{feature}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscription-system\/check-feature\/:feature",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscription-system\/check-feature\/:feature",
                            "variable": [
                                {
                                    "id": "feature",
                                    "key": "feature",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Publier un message de test sur Mercure",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mercure\/publish",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mercure\/publish"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "V\u00e9rifier la configuration Mercure",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mercure\/config",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mercure\/config"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Invoices (Factures)",
            "description": "",
            "item": [
                {
                    "name": "R\u00e9cup\u00e9rer toutes les factures de l'utilisateur connect\u00e9",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/invoices\/my",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/invoices\/my"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "R\u00e9cup\u00e8re la liste compl\u00e8te de toutes les factures de l'utilisateur:\n- Factures de r\u00e9servations (paiements confirm\u00e9s)\n- Factures d'abonnements (pour les propri\u00e9taires)\n- Factures de remboursement\n\nLes factures sont tri\u00e9es par date d\u00e9croissante (plus r\u00e9centes en premier).\n\n**Contr\u00f4les d'acc\u00e8s:**\n- Clients: Leurs r\u00e9servations et remboursements\n- Propri\u00e9taires: Leurs r\u00e9servations, abonnements et remboursements\n- Support: Toutes les factures",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"invoices\": [\n      {\n        \"type\": \"reservation\",\n        \"id\": 123,\n        \"reference\": \"BK-ABC123\",\n        \"date\": \"2026-02-03\",\n        \"amount\": 750.00,\n        \"currency\": \"EUR\",\n        \"status\": \"paid\",\n        \"invoice_number\": \"RES-2026-0000000123\",\n        \"property_name\": \"Villa Oc\u00e9ane\"\n      },\n      {\n        \"type\": \"subscription\",\n        \"id\": 78,\n        \"reference\": \"INV-2026-000078\",\n        \"date\": \"2026-02-01\",\n        \"amount\": 99.00,\n        \"currency\": \"USD\",\n        \"status\": \"paid\",\n        \"invoice_number\": \"INV-2026-000078\",\n        \"plan_name\": \"Professional\"\n      },\n      {\n        \"type\": \"refund\",\n        \"id\": 234,\n        \"reference\": \"pi_1234567890\",\n        \"date\": \"2026-01-28\",\n        \"amount\": -500.00,\n        \"currency\": \"EUR\",\n        \"status\": \"refunded\",\n        \"invoice_number\": \"REF-2026-0000000234\",\n        \"property_name\": \"Appartement Paris\"\n      }\n    ],\n    \"total\": 3\n  },\n  \"message\": \"Factures r\u00e9cup\u00e9r\u00e9es avec succ\u00e8s\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Erreur lors de la r\u00e9cup\u00e9ration des factures\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "R\u00e9cup\u00e9rer la facture d'une r\u00e9servation",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/invoices\/reservation\/:reservationId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/invoices\/reservation\/:reservationId",
                            "variable": [
                                {
                                    "id": "reservationId",
                                    "key": "reservationId",
                                    "value": "123",
                                    "description": "L'ID de la r\u00e9servation."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "R\u00e9cup\u00e8re la facture d\u00e9taill\u00e9e d'une r\u00e9servation sp\u00e9cifique.\nSi la facture n'existe pas, elle est automatiquement r\u00e9g\u00e9n\u00e9r\u00e9e.\n\n**Contr\u00f4les d'acc\u00e8s:**\n- Clients: Uniquement leurs propres r\u00e9servations\n- Propri\u00e9taires: R\u00e9servations de leurs propri\u00e9t\u00e9s\n- Support: Toutes les r\u00e9servations",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"invoice\": {\n      \"company\": {\n        \"name\": \"IMOBIZNETS\",\n        \"legal_name\": \"DIVINE GRACE VACATION HOMES RENTAL L.L.C\",\n        \"address_line1\": \"Dmac xl tower 2204, BUSINESS BAY\",\n        \"address_line2\": \"Dubai, Dubai 65965\",\n        \"country\": \"United Arab Emirates\",\n        \"email\": \"support@divingrace.com\",\n        \"tax_reg\": \"100572506200003\"\n      },\n      \"billed_to\": {\n        \"name\": \"John Doe\",\n        \"email\": \"john@example.com\",\n        \"address_line1\": \"123 Main St\",\n        \"country\": \"France\"\n      },\n      \"invoice\": {\n        \"number\": \"RES-2026-0000000123\",\n        \"date\": \"Feb 03, 2026\",\n        \"amount\": 750.00,\n        \"currency\": \"EUR\",\n        \"status\": \"PAID\"\n      },\n      \"details\": {\n        \"type\": \"RESERVATION\",\n        \"reservation_ref\": \"BK-ABC123\",\n        \"property\": \"Villa Oc\u00e9ane\",\n        \"checkin_date\": \"Feb 15, 2026\",\n        \"checkout_date\": \"Feb 20, 2026\",\n        \"nights\": 5,\n        \"guests\": 4\n      },\n      \"items\": [\n        {\n          \"description\": \"Villa Oc\u00e9ane - 5 night(s) \u00d7 2 room(s)\",\n          \"quantity\": 10,\n          \"amount\": 600.00\n        },\n        {\n          \"description\": \"Cleaning Fee\",\n          \"quantity\": 1,\n          \"amount\": 50.00\n        }\n      ],\n      \"totals\": {\n        \"subtotal\": 650.00,\n        \"tax\": 100.00,\n        \"discount\": 0.00,\n        \"total\": 750.00\n      }\n    },\n    \"reservation\": {\n      \"id\": 123,\n      \"booking_ref\": \"BK-ABC123\",\n      \"status\": \"confirmed\"\n    }\n  },\n  \"message\": \"Facture r\u00e9cup\u00e9r\u00e9e avec succ\u00e8s\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Acc\u00e8s non autoris\u00e9\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"R\u00e9servation non trouv\u00e9e\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "R\u00e9cup\u00e9rer la facture d'un devis",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/invoices\/quote\/:quoteId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/invoices\/quote\/:quoteId",
                            "variable": [
                                {
                                    "id": "quoteId",
                                    "key": "quoteId",
                                    "value": "45",
                                    "description": "L'ID du devis."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "R\u00e9cup\u00e8re la facture d\u00e9taill\u00e9e d'un devis sp\u00e9cifique.\nSi la facture n'existe pas, elle est automatiquement r\u00e9g\u00e9n\u00e9r\u00e9e.\n\n**Contr\u00f4les d'acc\u00e8s:**\n- Clients: Uniquement leurs propres devis\n- Propri\u00e9taires: Devis de leurs propri\u00e9t\u00e9s\n- Support: Tous les devis",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"invoice\": {\n      \"company\": {...},\n      \"billed_to\": {...},\n      \"invoice\": {\n        \"number\": \"QTE-2026-0000000045\",\n        \"date\": \"Feb 03, 2026\",\n        \"amount\": 850.00,\n        \"currency\": \"EUR\",\n        \"status\": \"PENDING\"\n      },\n      \"details\": {\n        \"type\": \"QUOTE\",\n        \"quote_ref\": \"QTE-ABC456\",\n        \"property\": \"Appartement Paris\",\n        \"valid_until\": \"Feb 10, 2026\"\n      },\n      \"items\": [...],\n      \"totals\": {...}\n    },\n    \"quote\": {\n      \"id\": 45,\n      \"quote_ref\": \"QTE-ABC456\",\n      \"status\": \"pending\"\n    }\n  },\n  \"message\": \"Facture r\u00e9cup\u00e9r\u00e9e avec succ\u00e8s\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Acc\u00e8s non autoris\u00e9\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Devis non trouv\u00e9\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "R\u00e9cup\u00e9rer une facture d'abonnement",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/invoices\/subscription\/:invoiceId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/invoices\/subscription\/:invoiceId",
                            "variable": [
                                {
                                    "id": "invoiceId",
                                    "key": "invoiceId",
                                    "value": "78",
                                    "description": "L'ID de la facture d'abonnement."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "R\u00e9cup\u00e8re la facture d\u00e9taill\u00e9e d'un abonnement sp\u00e9cifique.\nSi la facture n'existe pas, elle est automatiquement r\u00e9g\u00e9n\u00e9r\u00e9e.\n\n**Contr\u00f4les d'acc\u00e8s:**\n- Propri\u00e9taires: Uniquement leurs propres abonnements\n- Support: Tous les abonnements",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"invoice\": {\n      \"company\": {...},\n      \"billed_to\": {...},\n      \"invoice\": {\n        \"number\": \"INV-2026-000078\",\n        \"date\": \"Feb 01, 2026\",\n        \"amount\": 99.00,\n        \"currency\": \"USD\",\n        \"status\": \"PAID\"\n      },\n      \"details\": {\n        \"type\": \"SUBSCRIPTION\",\n        \"subscription_id\": \"sub_1234567890\",\n        \"billing_period\": \"Feb 01, 2026 - Mar 01, 2026\",\n        \"next_payment_date\": \"Mar 01, 2026\",\n        \"plan_name\": \"Professional\",\n        \"plan_interval\": \"monthly\",\n        \"properties_count\": 5\n      },\n      \"items\": [\n        {\n          \"description\": \"Professional Plan - Monthly\",\n          \"quantity\": 1,\n          \"amount\": 99.00\n        }\n      ],\n      \"totals\": {\n        \"subtotal\": 99.00,\n        \"tax\": 0.00,\n        \"discount\": 0.00,\n        \"total\": 99.00\n      }\n    },\n    \"subscription_invoice\": {\n      \"id\": 78,\n      \"invoice_number\": \"INV-2026-000078\",\n      \"status\": \"paid\"\n    }\n  },\n  \"message\": \"Facture r\u00e9cup\u00e9r\u00e9e avec succ\u00e8s\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Acc\u00e8s non autoris\u00e9\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Facture non trouv\u00e9e\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "R\u00e9cup\u00e9rer la facture de remboursement",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/invoices\/refund\/:paymentId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/invoices\/refund\/:paymentId",
                            "variable": [
                                {
                                    "id": "paymentId",
                                    "key": "paymentId",
                                    "value": "234",
                                    "description": "L'ID du paiement rembours\u00e9."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "R\u00e9cup\u00e8re la facture de cr\u00e9dit (remboursement) d'un paiement sp\u00e9cifique.\nSi la facture n'existe pas, elle est automatiquement r\u00e9g\u00e9n\u00e9r\u00e9e.\n\n**Note:** Seuls les paiements avec statut REFUNDED ou PARTIALLY_REFUNDED sont accept\u00e9s.\n\n**Contr\u00f4les d'acc\u00e8s:**\n- Clients: Uniquement leurs propres remboursements\n- Propri\u00e9taires: Remboursements de leurs propri\u00e9t\u00e9s\n- Support: Tous les remboursements",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"invoice\": {\n      \"company\": {...},\n      \"billed_to\": {...},\n      \"invoice\": {\n        \"number\": \"REF-2026-0000000234\",\n        \"date\": \"Feb 03, 2026\",\n        \"amount\": -750.00,\n        \"currency\": \"EUR\",\n        \"status\": \"REFUNDED\"\n      },\n      \"details\": {\n        \"type\": \"REFUND\",\n        \"payment_id\": 234,\n        \"refund_reason\": \"Annulation par le client\",\n        \"refund_date\": \"Feb 03, 2026\",\n        \"original_reservation_ref\": \"BK-ABC123\"\n      },\n      \"items\": [\n        {\n          \"description\": \"Remboursement - R\u00e9servation BK-ABC123\",\n          \"quantity\": 1,\n          \"amount\": -750.00\n        }\n      ],\n      \"totals\": {\n        \"subtotal\": -750.00,\n        \"tax\": 0.00,\n        \"discount\": 0.00,\n        \"total\": -750.00\n      }\n    },\n    \"payment\": {\n      \"id\": 234,\n      \"status\": \"refunded\",\n      \"refund_amount\": 750.00\n    }\n  },\n  \"message\": \"Facture de remboursement r\u00e9cup\u00e9r\u00e9e avec succ\u00e8s\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Ce paiement n'est pas un remboursement\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Acc\u00e8s non autoris\u00e9\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Paiement non trouv\u00e9\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "R\u00e9cup\u00e9rer la facture d'une r\u00e9servation",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/invoices\/reservation\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/invoices\/reservation\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "2",
                                    "description": "The ID of the reservation."
                                },
                                {
                                    "id": "reservationId",
                                    "key": "reservationId",
                                    "value": "123",
                                    "description": "L'ID de la r\u00e9servation."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "R\u00e9cup\u00e8re la facture d\u00e9taill\u00e9e d'une r\u00e9servation sp\u00e9cifique.\nSi la facture n'existe pas, elle est automatiquement r\u00e9g\u00e9n\u00e9r\u00e9e.\n\n**Contr\u00f4les d'acc\u00e8s:**\n- Clients: Uniquement leurs propres r\u00e9servations\n- Propri\u00e9taires: R\u00e9servations de leurs propri\u00e9t\u00e9s\n- Support: Toutes les r\u00e9servations",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"invoice\": {\n      \"company\": {\n        \"name\": \"IMOBIZNETS\",\n        \"legal_name\": \"DIVINE GRACE VACATION HOMES RENTAL L.L.C\",\n        \"address_line1\": \"Dmac xl tower 2204, BUSINESS BAY\",\n        \"address_line2\": \"Dubai, Dubai 65965\",\n        \"country\": \"United Arab Emirates\",\n        \"email\": \"support@divingrace.com\",\n        \"tax_reg\": \"100572506200003\"\n      },\n      \"billed_to\": {\n        \"name\": \"John Doe\",\n        \"email\": \"john@example.com\",\n        \"address_line1\": \"123 Main St\",\n        \"country\": \"France\"\n      },\n      \"invoice\": {\n        \"number\": \"RES-2026-0000000123\",\n        \"date\": \"Feb 03, 2026\",\n        \"amount\": 750.00,\n        \"currency\": \"EUR\",\n        \"status\": \"PAID\"\n      },\n      \"details\": {\n        \"type\": \"RESERVATION\",\n        \"reservation_ref\": \"BK-ABC123\",\n        \"property\": \"Villa Oc\u00e9ane\",\n        \"checkin_date\": \"Feb 15, 2026\",\n        \"checkout_date\": \"Feb 20, 2026\",\n        \"nights\": 5,\n        \"guests\": 4\n      },\n      \"items\": [\n        {\n          \"description\": \"Villa Oc\u00e9ane - 5 night(s) \u00d7 2 room(s)\",\n          \"quantity\": 10,\n          \"amount\": 600.00\n        },\n        {\n          \"description\": \"Cleaning Fee\",\n          \"quantity\": 1,\n          \"amount\": 50.00\n        }\n      ],\n      \"totals\": {\n        \"subtotal\": 650.00,\n        \"tax\": 100.00,\n        \"discount\": 0.00,\n        \"total\": 750.00\n      }\n    },\n    \"reservation\": {\n      \"id\": 123,\n      \"booking_ref\": \"BK-ABC123\",\n      \"status\": \"confirmed\"\n    }\n  },\n  \"message\": \"Facture r\u00e9cup\u00e9r\u00e9e avec succ\u00e8s\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Acc\u00e8s non autoris\u00e9\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"R\u00e9servation non trouv\u00e9e\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "R\u00e9cup\u00e9rer la facture d'un devis",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/invoices\/quote\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/invoices\/quote\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the quote."
                                },
                                {
                                    "id": "quoteId",
                                    "key": "quoteId",
                                    "value": "45",
                                    "description": "L'ID du devis."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "R\u00e9cup\u00e8re la facture d\u00e9taill\u00e9e d'un devis sp\u00e9cifique.\nSi la facture n'existe pas, elle est automatiquement r\u00e9g\u00e9n\u00e9r\u00e9e.\n\n**Contr\u00f4les d'acc\u00e8s:**\n- Clients: Uniquement leurs propres devis\n- Propri\u00e9taires: Devis de leurs propri\u00e9t\u00e9s\n- Support: Tous les devis",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"invoice\": {\n      \"company\": {...},\n      \"billed_to\": {...},\n      \"invoice\": {\n        \"number\": \"QTE-2026-0000000045\",\n        \"date\": \"Feb 03, 2026\",\n        \"amount\": 850.00,\n        \"currency\": \"EUR\",\n        \"status\": \"PENDING\"\n      },\n      \"details\": {\n        \"type\": \"QUOTE\",\n        \"quote_ref\": \"QTE-ABC456\",\n        \"property\": \"Appartement Paris\",\n        \"valid_until\": \"Feb 10, 2026\"\n      },\n      \"items\": [...],\n      \"totals\": {...}\n    },\n    \"quote\": {\n      \"id\": 45,\n      \"quote_ref\": \"QTE-ABC456\",\n      \"status\": \"pending\"\n    }\n  },\n  \"message\": \"Facture r\u00e9cup\u00e9r\u00e9e avec succ\u00e8s\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Acc\u00e8s non autoris\u00e9\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Devis non trouv\u00e9\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "R\u00e9cup\u00e9rer une facture d'abonnement",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/invoices\/subscription\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/invoices\/subscription\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the subscription."
                                },
                                {
                                    "id": "invoiceId",
                                    "key": "invoiceId",
                                    "value": "78",
                                    "description": "L'ID de la facture d'abonnement."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "R\u00e9cup\u00e8re la facture d\u00e9taill\u00e9e d'un abonnement sp\u00e9cifique.\nSi la facture n'existe pas, elle est automatiquement r\u00e9g\u00e9n\u00e9r\u00e9e.\n\n**Contr\u00f4les d'acc\u00e8s:**\n- Propri\u00e9taires: Uniquement leurs propres abonnements\n- Support: Tous les abonnements",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"invoice\": {\n      \"company\": {...},\n      \"billed_to\": {...},\n      \"invoice\": {\n        \"number\": \"INV-2026-000078\",\n        \"date\": \"Feb 01, 2026\",\n        \"amount\": 99.00,\n        \"currency\": \"USD\",\n        \"status\": \"PAID\"\n      },\n      \"details\": {\n        \"type\": \"SUBSCRIPTION\",\n        \"subscription_id\": \"sub_1234567890\",\n        \"billing_period\": \"Feb 01, 2026 - Mar 01, 2026\",\n        \"next_payment_date\": \"Mar 01, 2026\",\n        \"plan_name\": \"Professional\",\n        \"plan_interval\": \"monthly\",\n        \"properties_count\": 5\n      },\n      \"items\": [\n        {\n          \"description\": \"Professional Plan - Monthly\",\n          \"quantity\": 1,\n          \"amount\": 99.00\n        }\n      ],\n      \"totals\": {\n        \"subtotal\": 99.00,\n        \"tax\": 0.00,\n        \"discount\": 0.00,\n        \"total\": 99.00\n      }\n    },\n    \"subscription_invoice\": {\n      \"id\": 78,\n      \"invoice_number\": \"INV-2026-000078\",\n      \"status\": \"paid\"\n    }\n  },\n  \"message\": \"Facture r\u00e9cup\u00e9r\u00e9e avec succ\u00e8s\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Acc\u00e8s non autoris\u00e9\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Facture non trouv\u00e9e\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "R\u00e9cup\u00e9rer la facture de remboursement",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/invoices\/refund\/:payment_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/invoices\/refund\/:payment_id",
                            "variable": [
                                {
                                    "id": "payment_id",
                                    "key": "payment_id",
                                    "value": "consequatur",
                                    "description": "The ID of the payment."
                                },
                                {
                                    "id": "paymentId",
                                    "key": "paymentId",
                                    "value": "234",
                                    "description": "L'ID du paiement rembours\u00e9."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "R\u00e9cup\u00e8re la facture de cr\u00e9dit (remboursement) d'un paiement sp\u00e9cifique.\nSi la facture n'existe pas, elle est automatiquement r\u00e9g\u00e9n\u00e9r\u00e9e.\n\n**Note:** Seuls les paiements avec statut REFUNDED ou PARTIALLY_REFUNDED sont accept\u00e9s.\n\n**Contr\u00f4les d'acc\u00e8s:**\n- Clients: Uniquement leurs propres remboursements\n- Propri\u00e9taires: Remboursements de leurs propri\u00e9t\u00e9s\n- Support: Tous les remboursements",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"invoice\": {\n      \"company\": {...},\n      \"billed_to\": {...},\n      \"invoice\": {\n        \"number\": \"REF-2026-0000000234\",\n        \"date\": \"Feb 03, 2026\",\n        \"amount\": -750.00,\n        \"currency\": \"EUR\",\n        \"status\": \"REFUNDED\"\n      },\n      \"details\": {\n        \"type\": \"REFUND\",\n        \"payment_id\": 234,\n        \"refund_reason\": \"Annulation par le client\",\n        \"refund_date\": \"Feb 03, 2026\",\n        \"original_reservation_ref\": \"BK-ABC123\"\n      },\n      \"items\": [\n        {\n          \"description\": \"Remboursement - R\u00e9servation BK-ABC123\",\n          \"quantity\": 1,\n          \"amount\": -750.00\n        }\n      ],\n      \"totals\": {\n        \"subtotal\": -750.00,\n        \"tax\": 0.00,\n        \"discount\": 0.00,\n        \"total\": -750.00\n      }\n    },\n    \"payment\": {\n      \"id\": 234,\n      \"status\": \"refunded\",\n      \"refund_amount\": 750.00\n    }\n  },\n  \"message\": \"Facture de remboursement r\u00e9cup\u00e9r\u00e9e avec succ\u00e8s\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Ce paiement n'est pas un remboursement\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Acc\u00e8s non autoris\u00e9\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Paiement non trouv\u00e9\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Paiements",
            "description": "",
            "item": [
                {
                    "name": "Mini description: Liste pagin\u00e9e des paiements avec filtres (statut, mois, ann\u00e9e, propri\u00e9t\u00e9) et regroupement par propri\u00e9t\u00e9.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"current_page\": 1,\n    \"data\": [\n      {\n        \"id\": 101,\n        \"status\": \"completed\",\n        \"reservation\": {\"id\": 45, \"property\": {\"id\": 12, \"public_name\": \"Villa Oc\u00e9ane\"}}\n      }\n    ],\n    \"per_page\": 20,\n    \"total\": 1\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"success\": false, \"message\": \"Acc\u00e8s non autoris\u00e9.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Mini description: D\u00e9tails d\u2019un paiement (montant, statut, r\u00e9servation, propri\u00e9t\u00e9, utilisateur).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "ID du paiement. Exemple: 101"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"id\": 101,\n  \"amount\": 500.0,\n  \"status\": \"paid\",\n  \"reservation\": {\n    \"id\": 45,\n    \"property\": {\"id\": 12, \"public_name\": \"Villa Oc\u00e9ane\"},\n    \"user\": {\"id\": 7, \"name\": \"John Doe\", \"email\": \"john@example.com\"}\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"success\": false, \"message\": \"Acc\u00e8s refus\u00e9\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"success\": false, \"message\": \"Payment not found\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Propri\u00e9t\u00e9s",
            "description": "Mini description: Liste pagin\u00e9e des propri\u00e9t\u00e9s avec filtres et indicateur de disponibilit\u00e9.",
            "item": [
                {
                    "name": "Mini description: Propri\u00e9t\u00e9s recommand\u00e9es selon le r\u00f4le et options de disponibilit\u00e9.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/recommended",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/recommended"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"message\":\"Properties retrieved successfully\",\"data\":{\"data\":[{\"id\":1,\"public_name\":\"Villa\",\"total_comments\":0}]}}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"error\":\"Unauthorized\"}\nR\u00e9cup\u00e8re une liste pagin\u00e9e de propri\u00e9t\u00e9s recommand\u00e9es pour l'utilisateur authentifi\u00e9.\n\n- Si l'utilisateur a le r\u00f4le \"admin_proprio\", seules ses propri\u00e9t\u00e9s recommand\u00e9es actives sont retourn\u00e9es.\n- Sinon, toutes les propri\u00e9t\u00e9s recommand\u00e9es actives sont retourn\u00e9es.\n- Les propri\u00e9t\u00e9s incluent leurs m\u00e9dias et commodit\u00e9s associ\u00e9s.\n- Pour chaque propri\u00e9t\u00e9, la disponibilit\u00e9 (r\u00e9serv\u00e9e ou non) est calcul\u00e9e selon les dates fournies.",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Mini description: Liste pagin\u00e9e des propri\u00e9t\u00e9s de l'utilisateur synchronis\u00e9es avec Channex.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/synced",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/synced"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Mini description: D\u00e9tails complets d\u2019une propri\u00e9t\u00e9 (relations, dates r\u00e9serv\u00e9es, propri\u00e9taire).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:property_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:property_id",
                            "variable": [
                                {
                                    "id": "property_id",
                                    "key": "property_id",
                                    "value": "17",
                                    "description": "ID de la propri\u00e9t\u00e9. Exemple: 12"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Property retrieved successfully\",\n  \"data\": {\"id\": 12, \"public_name\": \"Villa Oc\u00e9ane\", \"reserved_dates\": [], \"total_comments\": 0}\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"error\":\"Property not found\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"error\":\"Failed to retrieve property\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "}\n                }\n            }\n        )\n    ),",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "@OA\\Response(\n        response=500,\n        description=\"Server error\",",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "R\u00e9servations",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/reservations\/reservations-by-properties",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reservations\/reservations-by-properties",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reservations\/reservations-by-properties"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\": true, \"data\": {\"current_page\": 1, \"data\": []}, \"message\": \"Reservations retrieved successfully\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": false, \"message\": \"Failed to retrieve reservations\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/reservations",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reservations",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reservations"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\": true, \"data\": {\"current_page\": 1, \"data\": []}, \"message\": \"Reservations retrieved successfully\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": false, \"message\": \"Failed to retrieve reservations\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/reservations",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reservations",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reservations"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"property_id\":17,\"checkin_date\":\"consequatur\",\"checkout_date\":\"consequatur\",\"guests\":[\"consequatur\"],\"status\":\"consequatur\",\"offer_id\":17,\"package_ids\":[17],\"service_ids\":[17],\"rooms\":[{\"rooms_count\":45}],\"promo_code\":\"consequatur\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\"success\": true, \"data\": {\"reservation\": {\"id\": 1}, \"total_price\": 750.0}, \"message\": \"Reservation created successfully\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\"success\": false, \"message\": \"Validation Error\", \"data\": {\"property_id\": [\"The property id field is required.\"]}}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"success\": false, \"message\": \"Property not found\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 409,
                            "body": "{\"success\": false, \"message\": \"La propri\u00e9t\u00e9 est d\u00e9j\u00e0 r\u00e9serv\u00e9e sur cette p\u00e9riode\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": false, \"message\": \"Failed to create reservation\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Smart Locks",
            "description": "",
            "item": [
                {
                    "name": "POST api\/v1\/properties\/{propertyId}\/smart-lock\/configure",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:propertyId\/smart-lock\/configure",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:propertyId\/smart-lock\/configure",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "17",
                                    "description": "ID de la propri\u00e9t\u00e9. Exemple: 12"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"smart_lock_provider_id\":17,\"smart_lock_id\":17,\"smart_lock_config\":[],\"smart_lock_status\":\"consequatur\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\": true, \"data\": {\"id\": 12, \"smart_lock_status\": \"active\"}, \"message\": \"Serrure smart lock configur\u00e9e avec succ\u00e8s\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"success\": false, \"message\": \"Vous n'\u00eates pas autoris\u00e9 \u00e0 configurer cette propri\u00e9t\u00e9\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"success\": false, \"message\": \"Validation failed\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": false, \"message\": \"Erreur lors de la configuration de la serrure\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/properties\/{propertyId}\/smart-lock\/info",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:propertyId\/smart-lock\/info",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:propertyId\/smart-lock\/info",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "17",
                                    "description": "ID de la propri\u00e9t\u00e9. Exemple: 12"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\": true, \"data\": {\"has_smart_lock\": true, \"status\": \"active\"}, \"message\": \"Informations de la serrure smart lock r\u00e9cup\u00e9r\u00e9es\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"success\": false, \"message\": \"Vous n'\u00eates pas autoris\u00e9 \u00e0 voir cette propri\u00e9t\u00e9\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"success\": false, \"message\": \"Property not found\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": false, \"message\": \"Erreur lors de la r\u00e9cup\u00e9ration des informations\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/properties\/{propertyId}\/smart-lock\/access-codes",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:propertyId\/smart-lock\/access-codes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:propertyId\/smart-lock\/access-codes",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "17",
                                    "description": "ID de la propri\u00e9t\u00e9. Exemple: 12"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\": true, \"data\": [{\"code\": \"123456\", \"valid_from\": \"2025-08-01T09:00:00Z\"}], \"message\": \"Codes d'acc\u00e8s actifs r\u00e9cup\u00e9r\u00e9s\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"success\": false, \"message\": \"Acc\u00e8s non autoris\u00e9\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"success\": false, \"message\": \"Property not found\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": false, \"message\": \"Erreur lors de la r\u00e9cup\u00e9ration des codes d'acc\u00e8s\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/properties\/{propertyId}\/smart-lock\/access-codes\/history",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/properties\/:propertyId\/smart-lock\/access-codes\/history",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/properties\/:propertyId\/smart-lock\/access-codes\/history",
                            "variable": [
                                {
                                    "id": "propertyId",
                                    "key": "propertyId",
                                    "value": "17",
                                    "description": "ID de la propri\u00e9t\u00e9. Exemple: 12"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"message\": \"Historique des codes d'acc\u00e8s r\u00e9cup\u00e9r\u00e9\", \"data\": []}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"error\": \"Unauthorized\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"error\": \"Acc\u00e8s non autoris\u00e9\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"error\": \"Property not found\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"error\": \"Erreur lors de la r\u00e9cup\u00e9ration de l'historique\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "T\u00e2ches",
            "description": "",
            "item": [
                {
                    "name": "POST api\/v1\/tasks\/{task}\/assign-users",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/tasks\/:task\/assign-users",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/tasks\/:task\/assign-users",
                            "variable": [
                                {
                                    "id": "task",
                                    "key": "task",
                                    "value": "17",
                                    "description": "ID de la t\u00e2che. Exemple: 1"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_ids\":[\"consequatur\"]}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Users assigned to task successfully\",\n  \"data\": {\n    \"id\": 1,\n    \"title\": \"Nouvelle t\u00e2che\",\n    \"users\": [\n      {\"id\": 1, \"name\": \"Jean Dupont\", \"email\": \"jean@example.com\"},\n      {\"id\": 2, \"name\": \"Marie Curie\", \"email\": \"marie@example.com\"}\n    ]\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Validation error\",\n  \"data\": {\"user_ids\": [\"The selected user_ids.1 is invalid.\"]}\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"success\": false, \"message\": \"Task not found\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": false, \"message\": \"Failed to assign users to task\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Utilisateur",
            "description": "",
            "item": [
                {
                    "name": "POST api\/v1\/user\/update",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user\/update",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user\/update"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "username",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "Nom d'utilisateur. Exemple: john_doe"
                                },
                                {
                                    "key": "first_name",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "Pr\u00e9nom. Exemple: John"
                                },
                                {
                                    "key": "last_name",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "Nom. Exemple: Doe"
                                },
                                {
                                    "key": "job",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "M\u00e9tier. Exemple: D\u00e9veloppeur"
                                },
                                {
                                    "key": "location",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "Localisation. Exemple: Paris"
                                },
                                {
                                    "key": "phone",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "T\u00e9l\u00e9phone. Exemple: +33612345678"
                                },
                                {
                                    "key": "email",
                                    "value": "qkunze@example.com",
                                    "type": "text",
                                    "description": "Email. Exemple: john.doe@example.com"
                                },
                                {
                                    "key": "password",
                                    "value": "O[2UZ5ij-e\/dl4m{o,",
                                    "type": "text",
                                    "description": "Nouveau mot de passe (min 6) + confirmation."
                                },
                                {
                                    "key": "password_confirmation",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": "Confirmation du mot de passe."
                                },
                                {
                                    "key": "avatar",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\": true, \"data\": {\"id\": 1, \"username\": \"john_doe\"}, \"message\": \"User informations updated successfully\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\"success\": false, \"message\": \"Require fields error\", \"data\": {\"email\": [\"The email has already been taken.\"]}}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": false, \"message\": \"Failed to update user\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/user\/delete",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user\/delete",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user\/delete"
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\": true, \"data\": null, \"message\": \"Utilisateur supprim\u00e9 avec succ\u00e8s\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": false, \"message\": \"Erreur lors de la suppression\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "Authorization",
                "type": "string"
            }
        ]
    }
}