{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "https:\/\/vitacare.ms-hotel.net\/"
        }
    ],
    "info": {
        "name": "MS-HC",
        "_postman_id": "3312cb1e-3a99-4cf9-9bf6-85036fc9abc4",
        "description": "",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "Admissions",
            "description": "\nGestion des hospitalisations des patients",
            "item": [
                {
                    "name": "Lister les admissions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admissions\/all",
                            "query": [
                                {
                                    "key": "patient_id",
                                    "value": "1",
                                    "description": "ID du patient.",
                                    "disabled": false
                                },
                                {
                                    "key": "doctor_id",
                                    "value": "2",
                                    "description": "ID du m\u00e9decin.",
                                    "disabled": false
                                },
                                {
                                    "key": "medical_page_id",
                                    "value": "5",
                                    "description": "ID de la consultation.",
                                    "disabled": false
                                },
                                {
                                    "key": "status",
                                    "value": "active",
                                    "description": "Statut admission (active, discharged, transferred).",
                                    "disabled": false
                                },
                                {
                                    "key": "room_number",
                                    "value": "A12",
                                    "description": "Num\u00e9ro de chambre.",
                                    "disabled": false
                                },
                                {
                                    "key": "start_date",
                                    "value": "2026-01-01",
                                    "description": "date Date d\u00e9but (YYYY-MM-DD).",
                                    "disabled": false
                                },
                                {
                                    "key": "end_date",
                                    "value": "2026-12-31",
                                    "description": "date Date fin (YYYY-MM-DD).",
                                    "disabled": false
                                },
                                {
                                    "key": "filter_value",
                                    "value": "ab",
                                    "description": "Recherche globale.",
                                    "disabled": false
                                },
                                {
                                    "key": "trashed",
                                    "value": "",
                                    "description": "Inclure supprim\u00e9s.",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/admissions\/all?patient_id=1&doctor_id=2&medical_page_id=5&status=active&room_number=A12&start_date=2026-01-01&end_date=2026-12-31&filter_value=ab&trashed="
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"patient_id\":19,\"doctor_id\":14,\"medical_page_id\":12,\"status\":\"transferred\",\"room_number\":\"aut\",\"start_date\":\"2026-05-07T16:23:58\",\"end_date\":\"2026-05-07T16:23:58\",\"filter_value\":\"architecto\",\"trashed\":false,\"page_items\":6,\"nbre_items\":25}"
                        },
                        "description": "Permet de r\u00e9cup\u00e9rer la liste des admissions"
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9er une admission",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admissions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admissions"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"patient_id\":1,\"doctor_id\":2,\"medical_page_id\":5,\"admitted_at\":\"2026-05-05 10:00:00\",\"discharged_at\":\"2026-05-10 12:00:00\",\"room_number\":\"A12\",\"status\":\"active\",\"notes\":\"deserunt\"}"
                        },
                        "description": "Permet d'enregistrer une nouvelle hospitalisation."
                    },
                    "response": []
                },
                {
                    "name": "Afficher une admission",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admissions\/:admission_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admissions\/:admission_id",
                            "variable": [
                                {
                                    "id": "admission_id",
                                    "key": "admission_id",
                                    "value": "1",
                                    "description": "The ID of the admission."
                                },
                                {
                                    "id": "admission",
                                    "key": "admission",
                                    "value": "1",
                                    "description": "ID de l'admission."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retourne les d\u00e9tails d'une admission."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/admissions\/1 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Modifier une admission",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admissions\/:admission_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admissions\/:admission_id",
                            "variable": [
                                {
                                    "id": "admission_id",
                                    "key": "admission_id",
                                    "value": "1",
                                    "description": "The ID of the admission."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"patient_id\":10,\"doctor_id\":3,\"medical_page_id\":10,\"room_number\":\"hhhfbffkuvvqt\",\"admitted_at\":\"2026-05-07T16:23:58\",\"discharged_at\":\"2026-05-07T16:23:58\",\"status\":\"active\",\"notes\":\"quam\"}"
                        },
                        "description": "Tous les champs sont modifiables"
                    },
                    "response": []
                },
                {
                    "name": "Mettre en corbeille",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admissions\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admissions\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[5]}"
                        },
                        "description": "Body : ids[]"
                    },
                    "response": []
                },
                {
                    "name": "Restaurer",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admissions\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admissions\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[8]}"
                        },
                        "description": "Body : ids[]"
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Authentification",
            "description": "\nGestion de l'authentification des utilisateurs",
            "item": [
                {
                    "name": "Fonction permettant \u00e0 un utilisateur d\u00e9j\u00e0 inscrit de se connecter",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/login",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/login"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"username\":\"consequuntur\",\"password\":\"Hq}?W0)-%\\\\Ge3eQ\\\"`[\",\"device_key\":\"rerum\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Fonction permettant \u00e0 un utilisateur connect\u00e9 de se d\u00e9connecter",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/logout",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/logout"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Avance sur salaire \/ Salary advance",
            "description": "\nGestion des avances sur salaire",
            "item": [
                {
                    "name": "Afficher la liste filtr\u00e9e des avances sur salaire",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/salaries-advances\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/salaries-advances\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":14,\"nbre_items\":14,\"filter_value\":\"magnam\",\"trashed\":true,\"user_id\":3,\"user_approve_id\":11,\"date\":\"2026-05-07\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Show the form for creating a new resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/salaries-advances",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/salaries-advances"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"salary_advances\":[{\"user_approve_id\":2,\"amount\":\"corrupti\",\"reason\":\"dignissimos\"}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher une retenue sur salaire sp\u00e9cifique",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/salaries-advances\/:salary_advance_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/salaries-advances\/:salary_advance_id",
                            "variable": [
                                {
                                    "id": "salary_advance_id",
                                    "key": "salary_advance_id",
                                    "value": "vel",
                                    "description": "The ID of the salary advance."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/salaries-advances\/vel could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Mettre \u00e0 jour une retenue sur salaire sp\u00e9cifique",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/salaries-advances\/:salary_advance_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/salaries-advances\/:salary_advance_id",
                            "variable": [
                                {
                                    "id": "salary_advance_id",
                                    "key": "salary_advance_id",
                                    "value": "cupiditate",
                                    "description": "The ID of the salary advance."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_approve_id\":7,\"status\":\"in_progress\",\"reason\":\"ut\",\"comments\":\"quisquam\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Archiver (soft delete) les avances sur salaire sp\u00e9cifi\u00e9es.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/salaries-advances\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/salaries-advances\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[19]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaurer les avances sur salaire archiv\u00e9es.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/salaries-advances\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/salaries-advances\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[8]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Avertissements",
            "description": "Gestion des avertissements",
            "item": [
                {
                    "name": "Lister les avertissements",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/warnings\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/warnings\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":37,\"nbre_items\":3,\"user_id\":1,\"date\":\"2026-05-07\",\"filter_value\":\"olgmgajcyesocigkqhzlrmb\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Ajouter un ou plusieurs avertissements",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/warnings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/warnings"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"warnings\":[{\"user_id\":19,\"reason\":\"delectus\",\"date\":\"2026-05-07\"}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher les d\u00e9tails d'un avertissement",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/warnings\/:warning_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/warnings\/:warning_id",
                            "variable": [
                                {
                                    "id": "warning_id",
                                    "key": "warning_id",
                                    "value": "16",
                                    "description": "The ID of the warning."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/warnings\/16 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Modifier les d\u00e9tails d'un avertissement",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/warnings\/:warning_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/warnings\/:warning_id",
                            "variable": [
                                {
                                    "id": "warning_id",
                                    "key": "warning_id",
                                    "value": "3",
                                    "description": "The ID of the warning."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_id\":20,\"date\":\"2026-05-07\",\"page_items\":19,\"nbre_items\":3,\"filter_value\":\"quia\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Mettre un ou plusieurs avertissements en corbeille (soft delete)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/warnings\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/warnings\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"warning_ids\":[20]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaurer un ou plusieurs avertissements de la corbeille",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/warnings\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/warnings\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"warning_ids\":[13]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Supprimer d\u00e9finitivement un ou plusieurs avertissements",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/warnings\/destroy",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/warnings\/destroy"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"warning_ids\":[7]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Bons d'achats",
            "description": "\nGestion des bons d'achat",
            "item": [
                {
                    "name": "Afficher une liste filtr\u00e9e des bons d'achat",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/purchase-orders\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/purchase-orders\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":50,\"nbre_items\":17,\"filter_value\":\"ltlmpohzovcppham\",\"status\":\"delivered\",\"priority\":\"urgent\",\"supplier_id\":18,\"responsible_id\":17,\"medication_ids\":[7],\"trashed\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Enregistrer un bon d'achat",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/purchase-orders",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/purchase-orders"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"supplier_id\":19,\"responsible_id\":2,\"description\":\"Id perspiciatis animi sint ipsam omnis vel.\",\"status\":\"pending_approval\",\"priority\":\"medium\",\"quotation_file\":\"voluptates\",\"medications\":[{\"id\":11,\"unit_price\":43,\"quantity\":48}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher un bon d'achat sp\u00e9cifique",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/purchase-orders\/:purchase_voucher",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/purchase-orders\/:purchase_voucher",
                            "variable": [
                                {
                                    "id": "purchase_voucher",
                                    "key": "purchase_voucher",
                                    "value": "5",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/purchase-orders\/5 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update the specified resource in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/purchase-orders\/:purchase_voucher",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/purchase-orders\/:purchase_voucher",
                            "variable": [
                                {
                                    "id": "purchase_voucher",
                                    "key": "purchase_voucher",
                                    "value": "14",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"supplier_id\":19,\"responsible_id\":10,\"description\":\"Perspiciatis ipsam et eos iure nihil ex veniam.\",\"status\":\"delivered\",\"priority\":\"urgent\",\"quotation_file\":\"molestiae\",\"medications\":[{\"id\":17,\"unit_price\":36,\"quantity\":2}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Fonction pour le multiple archivage des bonds d'achat",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/purchase-orders\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/purchase-orders\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[7]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Fonction de restauration multiples des bonds d'achat",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/purchase-orders\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/purchase-orders\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[14]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Caisse \/ Facturation",
            "description": "\nGestion des factures et paiements MS-Care",
            "item": [
                {
                    "name": "Lister les factures",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/invoices\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/invoices\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":38,\"nbre_items\":12,\"filter_value\":\"qixjgzxsnn\",\"patient_id\":6,\"cashier_id\":5,\"status\":\"saepe\",\"payment_mode\":\"esse\",\"date_from\":\"2026-05-07\",\"date_to\":\"2026-05-07\",\"trashed\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9er une facture avec ses lignes",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/invoices",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/invoices"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"patient_id\":16,\"medical_page_id\":2,\"discount\":3,\"payment_mode\":\"eos\",\"notes\":\"tempora\",\"mm_operator\":\"est\",\"mm_payer_number\":\"laboriosam\",\"mm_transaction_ref\":\"in\",\"mm_payment_date\":\"2026-05-07\",\"insurance_name\":\"accusamus\",\"insurance_ref\":\"illum\",\"insurance_amount\":0,\"patient_amount\":80,\"items\":[{\"item_type\":\"quis\",\"label\":\"qui\",\"quantity\":78,\"unit_price\":7,\"lab_request_id\":20,\"nursing_act_id\":11,\"medication_id\":7,\"prescription_id\":15}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher une facture",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/invoices\/:invoice_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/invoices\/:invoice_id",
                            "variable": [
                                {
                                    "id": "invoice_id",
                                    "key": "invoice_id",
                                    "value": "16",
                                    "description": "The ID of the invoice."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/invoices\/16 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Mettre \u00e0 jour une facture (paiement compl\u00e9mentaire)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/invoices\/:invoice_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/invoices\/:invoice_id",
                            "variable": [
                                {
                                    "id": "invoice_id",
                                    "key": "invoice_id",
                                    "value": "7",
                                    "description": "The ID of the invoice."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"amount_paid\":34,\"payment_mode\":\"distinctio\",\"discount\":70,\"notes\":\"reiciendis\",\"mm_operator\":\"aliquam\",\"mm_payer_number\":\"non\",\"mm_transaction_ref\":\"autem\",\"mm_payment_date\":\"2026-05-07\",\"insurance_name\":\"ut\",\"insurance_ref\":\"sed\",\"insurance_amount\":72,\"patient_amount\":18}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Annuler une facture (avec tra\u00e7abilit\u00e9)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/invoices\/:invoice_id\/cancel",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/invoices\/:invoice_id\/cancel",
                            "variable": [
                                {
                                    "id": "invoice_id",
                                    "key": "invoice_id",
                                    "value": "15",
                                    "description": "The ID of the invoice."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Archiver des factures",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/invoices\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/invoices\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[1]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaurer des factures",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/invoices\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/invoices\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[3]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Carnet M\u00e9dical",
            "description": "\nGestion des carnets m\u00e9dicaux",
            "item": [
                {
                    "name": "Lister les carnets m\u00e9dicaux",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medical-books\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medical-books\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":64,\"nbre_items\":8,\"filter_value\":\"zciinoipiwlsxvyqphipyp\",\"responsible_doctor_id\":1,\"health_center_id\":13,\"patient_id\":5,\"trashed\":false,\"start_date\":\"2026-05-07\",\"end_date\":\"2026-05-07\",\"ckd_stage\":\"sint\",\"dialysis_center\":\"ut\",\"current_doctor_name\":\"sed\",\"ckd_diagnosis_date\":\"2026-05-07T16:23:58\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Ajouter un carnet m\u00e9dical",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medical-books",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medical-books"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "patient_id",
                                    "value": "11",
                                    "type": "text",
                                    "description": "The <code>id<\/code> of an existing record in the users table."
                                },
                                {
                                    "key": "responsible_doctor_id",
                                    "value": "20",
                                    "type": "text",
                                    "description": "The <code>id<\/code> of an existing record in the users table."
                                },
                                {
                                    "key": "health_center_id",
                                    "value": "17",
                                    "type": "text",
                                    "description": "The <code>id<\/code> of an existing record in the health_centers table."
                                },
                                {
                                    "key": "blood_type",
                                    "value": "B-",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "known_allergies",
                                    "value": "inventore",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "chronic_diseases",
                                    "value": "aspernatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "observation",
                                    "value": "eos",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "status",
                                    "value": "rejected",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "current_doctor_name",
                                    "value": "vitae",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "current_doctor_phone",
                                    "value": "consequatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "current_doctor_address",
                                    "value": "aspernatur",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "medical_history",
                                    "value": "minima",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "current_treatments",
                                    "value": "ut",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "known_kidney_diseases",
                                    "value": "quas",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "autoimmune_or_infectious_diseases",
                                    "value": "dolor",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "allergies",
                                    "value": "id",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "ckd_stage",
                                    "value": "aperiam",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "ckd_diagnosis_date",
                                    "value": "2026-05-07T16:23:58",
                                    "type": "text",
                                    "description": "Le champ value doit \u00eatre une date valide."
                                },
                                {
                                    "key": "ckd_etiology",
                                    "value": "ut",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "recent_biological_tests",
                                    "value": "qui",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "dry_weight",
                                    "value": "68617.528",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "dialysis_indicated",
                                    "value": "",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "dialysis_type",
                                    "value": "hemodialysis",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "dialysis_center",
                                    "value": "exercitationem",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "dialysis_frequency",
                                    "value": "voluptates",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "dialysis_complications",
                                    "value": "veritatis",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "renal_imaging_file",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher les infos d'un carnet m\u00e9dical",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medical-books\/:medical_book",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medical-books\/:medical_book",
                            "variable": [
                                {
                                    "id": "medical_book",
                                    "key": "medical_book",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/medical-books\/1 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Modifier un carnet m\u00e9dical",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medical-books\/:medical_book",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medical-books\/:medical_book",
                            "variable": [
                                {
                                    "id": "medical_book",
                                    "key": "medical_book",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "patient_id",
                                    "value": "12",
                                    "type": "text",
                                    "description": "The <code>id<\/code> of an existing record in the users table."
                                },
                                {
                                    "key": "responsible_doctor_id",
                                    "value": "20",
                                    "type": "text",
                                    "description": "The <code>id<\/code> of an existing record in the users table."
                                },
                                {
                                    "key": "health_center_id",
                                    "value": "6",
                                    "type": "text",
                                    "description": "The <code>id<\/code> of an existing record in the health_centers table."
                                },
                                {
                                    "key": "blood_type",
                                    "value": "A-",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "known_allergies",
                                    "value": "enim",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "chronic_diseases",
                                    "value": "voluptates",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "observation",
                                    "value": "magnam",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "status",
                                    "value": "undone",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "current_doctor_name",
                                    "value": "praesentium",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "current_doctor_phone",
                                    "value": "eveniet",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "current_doctor_address",
                                    "value": "magnam",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "medical_history",
                                    "value": "magni",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "current_treatments",
                                    "value": "nulla",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "known_kidney_diseases",
                                    "value": "voluptatibus",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "autoimmune_or_infectious_diseases",
                                    "value": "quia",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "allergies",
                                    "value": "eaque",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "ckd_stage",
                                    "value": "quae",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "ckd_diagnosis_date",
                                    "value": "2026-05-07T16:23:58",
                                    "type": "text",
                                    "description": "Le champ value doit \u00eatre une date valide."
                                },
                                {
                                    "key": "ckd_etiology",
                                    "value": "qui",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "recent_biological_tests",
                                    "value": "repellat",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "dry_weight",
                                    "value": "3.365152",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "dialysis_indicated",
                                    "value": "",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "dialysis_type",
                                    "value": "hemodialysis",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "dialysis_center",
                                    "value": "praesentium",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "dialysis_frequency",
                                    "value": "voluptatem",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "dialysis_complications",
                                    "value": "quia",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "renal_imaging_file",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "_method",
                                    "value": "PUT",
                                    "type": "text"
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Archiver plusieurs medical_books",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medical-books\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medical-books\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[17]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaurer plusieurs medical_books",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medical-books\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medical-books\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[6]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Catalogue Actes Infirmiers",
            "description": "",
            "item": [
                {
                    "name": "POST api\/nursing-act-catalogs\/all",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/nursing-act-catalogs\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/nursing-act-catalogs\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":9,\"nbre_items\":17,\"filter_value\":\"xwlogmncwrrscub\",\"start_date\":\"2026-05-07\",\"end_date\":\"2026-05-07\",\"type\":\"nesciunt\",\"is_active\":true,\"trashed\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/nursing-act-catalogs",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/nursing-act-catalogs",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/nursing-act-catalogs"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"tqccwtcbiqetwmmobhdpbej\",\"type\":\"similique\",\"description\":\"Explicabo beatae et fugiat adipisci molestiae neque.\",\"price\":16,\"is_active\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/nursing-act-catalogs\/{nursing_act_catalog}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/nursing-act-catalogs\/:nursing_act_catalog",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/nursing-act-catalogs\/:nursing_act_catalog",
                            "variable": [
                                {
                                    "id": "nursing_act_catalog",
                                    "key": "nursing_act_catalog",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/nursing-act-catalogs\/1 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/nursing-act-catalogs\/{nursing_act_catalog}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/nursing-act-catalogs\/:nursing_act_catalog",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/nursing-act-catalogs\/:nursing_act_catalog",
                            "variable": [
                                {
                                    "id": "nursing_act_catalog",
                                    "key": "nursing_act_catalog",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"ddkkcdrolpbaolzu\",\"type\":\"adipisci\",\"description\":\"Et maxime repudiandae nihil modi.\",\"price\":47,\"is_active\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/nursing-act-catalogs\/trash",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/nursing-act-catalogs\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/nursing-act-catalogs\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[5]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/nursing-act-catalogs\/restore",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/nursing-act-catalogs\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/nursing-act-catalogs\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[1]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Catalogue Examens Laboratoire",
            "description": "",
            "item": [
                {
                    "name": "POST api\/lab-exam-catalogs\/all",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/lab-exam-catalogs\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/lab-exam-catalogs\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":84,\"nbre_items\":4,\"filter_value\":\"tervgnahieuntjhra\",\"type\":\"ratione\",\"start_date\":\"2026-05-07\",\"end_date\":\"2026-05-07\",\"is_active\":true,\"trashed\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/lab-exam-catalogs",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/lab-exam-catalogs",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/lab-exam-catalogs"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"jugzxshnxcndeqwgyptsnwv\",\"code\":\"hg\",\"type\":\"qui\",\"description\":\"Velit atque natus itaque aliquid enim.\",\"price\":70,\"turnaround_hours\":14,\"preparation_instructions\":\"commodi\",\"sample_required\":\"sed\",\"is_active\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/lab-exam-catalogs\/{lab_exam_catalog}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/lab-exam-catalogs\/:lab_exam_catalog",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/lab-exam-catalogs\/:lab_exam_catalog",
                            "variable": [
                                {
                                    "id": "lab_exam_catalog",
                                    "key": "lab_exam_catalog",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/lab-exam-catalogs\/1 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/lab-exam-catalogs\/{lab_exam_catalog}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/lab-exam-catalogs\/:lab_exam_catalog",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/lab-exam-catalogs\/:lab_exam_catalog",
                            "variable": [
                                {
                                    "id": "lab_exam_catalog",
                                    "key": "lab_exam_catalog",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"ieghobwnzxdxmvwhittpbo\",\"type\":\"impedit\",\"description\":\"Non ut qui possimus consequatur.\",\"price\":5,\"turnaround_hours\":70,\"preparation_instructions\":\"sed\",\"sample_required\":\"hic\",\"is_active\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/lab-exam-catalogs\/trash",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/lab-exam-catalogs\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/lab-exam-catalogs\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[2]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/lab-exam-catalogs\/restore",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/lab-exam-catalogs\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/lab-exam-catalogs\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[17]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Centres de sant\u00e9",
            "description": "\nGestion des centres de sant\u00e9",
            "item": [
                {
                    "name": "Lister les centres de sant\u00e9",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/health-centers\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/health-centers\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":33,\"nbre_items\":9,\"start_date\":\"2026-05-07\",\"end_date\":\"2026-05-07\",\"filter_value\":\"eapqcogusehpelyby\",\"responsible_id\":19,\"trashed\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Ajouter un centre de sant\u00e9",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/health-centers",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/health-centers"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"responsible_id\":15,\"name\":\"uk\",\"code\":\"hfvy\",\"description\":\"Quod voluptatibus autem maiores qui voluptatem repellendus enim.\",\"address\":\"emsugjcqseonxvaw\",\"city\":\"xguedonduzyctkd\",\"country\":\"ovka\",\"phone\":\"rdy\",\"logo\":\"javtzm\",\"email\":\"kertzmann.vito@example.net\",\"website\":\"pqvohraehyohxmklrsupn\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher les informations d'un centre de sant\u00e9",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/health-centers\/:health_center",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/health-centers\/:health_center",
                            "variable": [
                                {
                                    "id": "health_center",
                                    "key": "health_center",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/health-centers\/1 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Modifier les informations d'un centre de sant\u00e9",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/health-centers\/:health_center",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/health-centers\/:health_center",
                            "variable": [
                                {
                                    "id": "health_center",
                                    "key": "health_center",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"responsible_id\":18,\"name\":\"mqnmppzgbuedph\",\"code\":\"wcrd\",\"description\":\"Assumenda voluptatem deserunt ipsa omnis libero molestiae omnis.\",\"address\":\"iojswfvwcig\",\"city\":\"auquwtkdpjhnlgqeciewy\",\"country\":\"vzpvtzmpuukherlbqorpa\",\"phone\":\"bpywugtzjzjmzm\",\"logo\":\"kpll\",\"email\":\"marjolaine18@example.com\",\"website\":\"mruquloajnrzgitmepara\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Archiver plusieurs health_centers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/health-centers\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/health-centers\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[16]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaurer plusieurs health_centers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/health-centers\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/health-centers\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[5]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Chat",
            "description": "",
            "item": [
                {
                    "name": "Gestion des discussions du chat",
                    "description": "",
                    "item": [
                        {
                            "name": "Lister les discussions (priv\u00e9es et en groupe)",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/chat\/rooms\/all",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/chat\/rooms\/all"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"page_items\":88,\"nbre_items\":16,\"filter_value\":\"gopbyxlcytdx\",\"is_group\":true}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "D\u00e9marrer une discussion",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/chat\/rooms",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/chat\/rooms"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"tkvdunnprhcpwsljy\",\"photo\":\"uyhwwtonkkqowvqh\",\"participants\":[4]}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Afficher les infos d'une discussion",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/chat\/rooms\/:message_room",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/chat\/rooms\/:message_room",
                                    "variable": [
                                        {
                                            "id": "message_room",
                                            "key": "message_room",
                                            "value": "6",
                                            "description": ""
                                        }
                                    ]
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [
                                        {
                                            "key": "cache-control",
                                            "value": "no-cache, private"
                                        },
                                        {
                                            "key": "content-type",
                                            "value": "application\/json"
                                        },
                                        {
                                            "key": "access-control-allow-origin",
                                            "value": "*"
                                        }
                                    ],
                                    "code": 404,
                                    "body": "{\n    \"message\": \"The route api\/chat\/rooms\/6 could not be found.\"\n}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Modifier une discussion",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/chat\/rooms\/:message_room",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/chat\/rooms\/:message_room",
                                    "variable": [
                                        {
                                            "id": "message_room",
                                            "key": "message_room",
                                            "value": "1",
                                            "description": ""
                                        }
                                    ]
                                },
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"eh\",\"photo\":\"bbnptxfclbpjhudpyoijdqz\",\"participants\":[12]}"
                                },
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Gestion des messages du chat",
                    "description": "",
                    "item": [
                        {
                            "name": "Lister les messages",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/chat\/messages\/all",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/chat\/messages\/all"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"page_items\":18,\"nbre_items\":10,\"filter_value\":\"bzpkgsol\",\"message_room_id\":18,\"user_id\":8}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Ajouter un message",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/chat\/messages",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/chat\/messages"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"message_room_id\":2,\"body\":\"quibusdam\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Afficher un message",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/chat\/messages\/:message_id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/chat\/messages\/:message_id",
                                    "variable": [
                                        {
                                            "id": "message_id",
                                            "key": "message_id",
                                            "value": "5",
                                            "description": "The ID of the message."
                                        }
                                    ]
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [
                                        {
                                            "key": "cache-control",
                                            "value": "no-cache, private"
                                        },
                                        {
                                            "key": "content-type",
                                            "value": "application\/json"
                                        },
                                        {
                                            "key": "access-control-allow-origin",
                                            "value": "*"
                                        }
                                    ],
                                    "code": 404,
                                    "body": "{\n    \"message\": \"The route api\/chat\/messages\/5 could not be found.\"\n}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Modifier un message",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/chat\/messages\/:message_id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/chat\/messages\/:message_id",
                                    "variable": [
                                        {
                                            "id": "message_id",
                                            "key": "message_id",
                                            "value": "9",
                                            "description": "The ID of the message."
                                        }
                                    ]
                                },
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"body\":\"est\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                }
            ]
        },
        {
            "name": "Checkups patients",
            "description": "\nGestion des checkups patients",
            "item": [
                {
                    "name": "Lister les checkups patients",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/check-ups\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/check-ups\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":15,\"nbre_items\":16,\"filter_value\":\"aqxixaksebgwkkgcp\",\"patient_id\":18,\"medical_page_id\":19,\"date\":\"2026-05-07\",\"start_date\":\"2026-05-07\",\"end_date\":\"2026-05-07\",\"alert_status\":\"warning\",\"trashed\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Ajouter un checkup patient",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/check-ups",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/check-ups"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"patient_id\":7,\"medical_page_id\":10,\"dialysis_session_id\":14,\"weight_kg\":549.7,\"blood_pressure_systolic\":1,\"blood_pressure_diastolic\":15,\"heart_rate\":19,\"temperature_c\":44468.37517,\"blood_glucose\":607943529.62977,\"urine_output_ml\":14,\"spo2\":19,\"creatinine\":9.4053,\"urea\":701056.355,\"creatinine_clearance\":460534784.0818688,\"potassium\":636.91125011,\"sodium\":271571963.71419716,\"phosphorus\":3.68138194,\"calcium\":1034.3236,\"hemoglobin\":25.789,\"notes\":\"sit\",\"date\":\"2026-05-07T16:23:58\",\"alert_status\":\"normal\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher les infos d'un checkup patient",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/check-ups\/:patient_check_up",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/check-ups\/:patient_check_up",
                            "variable": [
                                {
                                    "id": "patient_check_up",
                                    "key": "patient_check_up",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/check-ups\/1 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Modifier un checkup patient",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/check-ups\/:patient_check_up",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/check-ups\/:patient_check_up",
                            "variable": [
                                {
                                    "id": "patient_check_up",
                                    "key": "patient_check_up",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"patient_id\":4,\"medical_page_id\":5,\"dialysis_session_id\":16,\"weight_kg\":5825.76,\"blood_pressure_systolic\":18,\"blood_pressure_diastolic\":13,\"heart_rate\":7,\"temperature_c\":13.3,\"blood_glucose\":63,\"urine_output_ml\":19,\"spo2\":1,\"creatinine\":663591609.2,\"urea\":6787052.638083335,\"creatinine_clearance\":5071,\"potassium\":549670059.374243,\"sodium\":265,\"phosphorus\":52575.472357,\"calcium\":647911,\"hemoglobin\":743.695,\"notes\":\"quisquam\",\"date\":\"2026-05-07T16:23:58\",\"alert_status\":\"warning\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Archiver plusieurs patient_check_ups",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/check-ups\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/check-ups\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[16]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaurer plusieurs patient_check_ups",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/check-ups\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/check-ups\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[14]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Cl\u00f4ture de Caisse",
            "description": "\nGestion des cl\u00f4tures journali\u00e8res de caisse MS-Care",
            "item": [
                {
                    "name": "POST api\/cash-closures\/all",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/cash-closures\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/cash-closures\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":24,\"nbre_items\":3,\"cashier_id\":20,\"status\":\"open\",\"date_from\":\"2026-05-07\",\"date_to\":\"2026-05-07\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9er une cl\u00f4ture de caisse \u2014 calcule automatiquement les totaux du jour",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/cash-closures",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/cash-closures"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"closure_date\":\"2026-05-07\",\"notes\":\"labore\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/cash-closures\/{cash_closure}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/cash-closures\/:cash_closure",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/cash-closures\/:cash_closure",
                            "variable": [
                                {
                                    "id": "cash_closure",
                                    "key": "cash_closure",
                                    "value": "11",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/cash-closures\/11 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Cl\u00f4turer d\u00e9finitivement (passer \u00e0 closed)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/cash-closures\/:cash_closure",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/cash-closures\/:cash_closure",
                            "variable": [
                                {
                                    "id": "cash_closure",
                                    "key": "cash_closure",
                                    "value": "12",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"closed\",\"notes\":\"esse\"}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Contrats",
            "description": "\n Gestion des contrats employ\u00e9s",
            "item": [
                {
                    "name": "Retourne la liste des contrats avec la possibilit\u00e9 de filtrer et paginer les r\u00e9sultats.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/contracts\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/contracts\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":9,\"nbre_items\":13,\"filter_value\":\"et\",\"position\":\"alias\",\"status\":\"Pending\",\"trashed\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Affiche les d\u00e9tails d\u2019un contrat sp\u00e9cifique \u00e0 partir de son identifiant.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/contracts\/:contract",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/contracts\/:contract",
                            "variable": [
                                {
                                    "id": "contract",
                                    "key": "contract",
                                    "value": "repellendus",
                                    "description": "The contract."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/contracts\/repellendus could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Cr\u00e9e un nouveau contrat pour un utilisateur, apr\u00e8s v\u00e9rification d'absence de contrat actif.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/contracts",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/contracts"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_id\":7,\"user_approve_id\":20,\"type\":\"consequatur\",\"description\":\"Dolorem fugiat facilis consequatur magni magnam ducimus eveniet.\",\"start_date\":\"2026-05-07T16:23:58\",\"duration\":72,\"working_hours\":\"necessitatibus\",\"position\":\"dolor\",\"gross_salary\":86,\"status\":\"Active\",\"service_benefits\":\"deleniti\",\"bonus\":\"cupiditate\",\"number_days_off\":12}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Met \u00e0 jour les informations d\u2019un contrat donn\u00e9.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/contracts\/:contract",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/contracts\/:contract",
                            "variable": [
                                {
                                    "id": "contract",
                                    "key": "contract",
                                    "value": "sed",
                                    "description": "The contract."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_id\":8,\"user_approve_id\":1,\"type\":\"Stage\",\"description\":\"Quasi animi repudiandae et ipsa nihil.\",\"start_date\":\"2026-05-07T16:23:58\",\"duration\":57,\"working_hours\":\"est\",\"position\":\"aut\",\"gross_salary\":51,\"status\":\"Pending\",\"service_benefits\":\"et\",\"bonus\":\"modi\",\"number_days_off\":20}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Archiver (soft delete) les contrats sp\u00e9cifi\u00e9es.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/contracts\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/contracts\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[14]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaurer les contrats archiv\u00e9s.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/contracts\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/contracts\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[20]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Supprimer d\u00e9finitivement les contrats sp\u00e9cifi\u00e9s.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/contracts\/destroy",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/contracts\/destroy"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[10]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Demande d'approvisionnement | Supply demand",
            "description": "Contr\u00f4leur charg\u00e9 de la gestion des demandes d'approvisionnement.",
            "item": [
                {
                    "name": "Cr\u00e9e une nouvelle demande d'approvisionnement.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/supply-demands",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/supply-demands"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"yawanowvnlqntqlrejyiw\",\"description\":\"Rem illo perspiciatis repellendus velit non.\",\"responsible_id\":7,\"status\":\"refused\",\"priority\":\"medium\",\"medications\":[{\"id\":18,\"unit_price\":1,\"quantity\":59,\"supplier_id\":4}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Affiche la liste pagin\u00e9e des demandes d'approvisionnement, avec filtres optionnels.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/supply-demands\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/supply-demands\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"filter_value\":\"aut\",\"responsible_id\":19,\"priority\":\"high\",\"status\":\"refused\",\"medication_ids\":[5]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Affiche les d\u00e9tails d'une demande d'approvisionnement sp\u00e9cifique.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/supply-demands\/:supply_demand_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/supply-demands\/:supply_demand_id",
                            "variable": [
                                {
                                    "id": "supply_demand_id",
                                    "key": "supply_demand_id",
                                    "value": "8",
                                    "description": "The ID of the supply demand."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/supply-demands\/8 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Met \u00e0 jour les informations d'une demande d'approvisionnement existante.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/supply-demands\/:supply_demand_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/supply-demands\/:supply_demand_id",
                            "variable": [
                                {
                                    "id": "supply_demand_id",
                                    "key": "supply_demand_id",
                                    "value": "10",
                                    "description": "The ID of the supply demand."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"gtw\",\"description\":\"Culpa voluptatem aut rerum nulla at temporibus.\",\"responsible_id\":18,\"status\":\"pending\",\"priority\":\"high\",\"medications\":[{\"id\":5,\"unit_price\":14,\"quantity\":63,\"supplier_id\":18}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Met en corbeille (suppression logique) une ou plusieurs demandes d'approvisionnement.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/supply-demands\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/supply-demands\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"supply_demand_ids\":[17]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaure une ou plusieurs demandes d'approvisionnement supprim\u00e9es (suppression logique).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/supply-demands\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/supply-demands\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"supply_demand_ids\":[2]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Demande d'explication \/ Explanation Request",
            "description": "\nGestion des demandes d'explication",
            "item": [
                {
                    "name": "Afficher les demandes d'explication",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/explanation-requests\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/explanation-requests\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":68,\"nbre_items\":16,\"filter_value\":\"vjoledzrvikjfdlz\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Creer une demande d'explication",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/explanation-requests",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/explanation-requests"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"molestiae\",\"description\":\"Error facilis vel at provident est omnis adipisci.\",\"idUser\":12,\"idResponsable\":13,\"image\":\"ut\",\"comments\":\"enim\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher une demande d'explication sp\u00e9cifique",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/explanation-requests\/:explanation_request",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/explanation-requests\/:explanation_request",
                            "variable": [
                                {
                                    "id": "explanation_request",
                                    "key": "explanation_request",
                                    "value": "2",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/explanation-requests\/2 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Mettre a jour une demande d'explication",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/explanation-requests\/:explanation_request",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/explanation-requests\/:explanation_request",
                            "variable": [
                                {
                                    "id": "explanation_request",
                                    "key": "explanation_request",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"dicta\",\"description\":\"Dolor qui rerum distinctio ut beatae.\",\"idUser\":2,\"idResponsable\":1,\"image\":\"rerum\",\"comments\":\"unde\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Archiver (soft delete) les demandes d'explication.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/explanation-requests\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/explanation-requests\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[15]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaurer les demandes d'explication archiv\u00e9es.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/explanation-requests\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/explanation-requests\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[1]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Demande de cong\u00e9",
            "description": "Gestion des demandes de cong\u00e9 employ\u00e9",
            "item": [
                {
                    "name": "Lister les cong\u00e9s enregistr\u00e9s",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/holidays\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/holidays\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_id\":14,\"user_approve_id\":11,\"status\":\"rejected\",\"archive\":\"only_trashed\",\"date\":\"2026-05-07T16:23:58\",\"page_items\":11,\"nbre_items\":12,\"filter_value\":\"reprehenderit\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Enregistrer une demande de cong\u00e9",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/holidays",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/holidays"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"ut\",\"start_date\":\"2026-05-07T16:23:58\",\"end_date\":\"2026-05-07T16:23:58\",\"days_taken\":9,\"reason\":\"ynsjpajhhnapdnmwo\",\"user_approve_id\":10}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher les d\u00e9tails d'une retenue sur salaire",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/holidays\/:holiday_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/holidays\/:holiday_id",
                            "variable": [
                                {
                                    "id": "holiday_id",
                                    "key": "holiday_id",
                                    "value": "16",
                                    "description": "The ID of the holiday."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/holidays\/16 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Modifier une demande de cong\u00e9",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/holidays\/:holiday_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/holidays\/:holiday_id",
                            "variable": [
                                {
                                    "id": "holiday_id",
                                    "key": "holiday_id",
                                    "value": "5",
                                    "description": "The ID of the holiday."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"cumque\",\"start_date\":\"2120-08-15\",\"end_date\":\"2078-04-10\",\"days_taken\":1,\"reason\":\"zqzxojesb\",\"status\":\"in_progress\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Archiver une ou plusieurs demandes de cong\u00e9s",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/holidays\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/holidays\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"idHolidays\":[9]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaurer une ou plusieurs demandes de cong\u00e9s",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/holidays\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/holidays\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"idHolidays\":[1]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Demandes de Permissions",
            "description": "\nContr\u00f4leur pour la gestion des demandes de permission des utilisateurs",
            "item": [
                {
                    "name": "Affiche une liste pagin\u00e9e des demandes de permission.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/permission-requests\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/permission-requests\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"approved\",\"departure\":\"2026-05-07\",\"return\":\"2026-05-07\",\"duration\":19,\"page_items\":7,\"nbre_items\":5,\"filter_value\":\"oeeycnpokelfklhdzsuepxzi\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9e une nouvelle demande de permission.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/permission-requests",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/permission-requests"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"reason\":\"voluptatem\",\"departure\":\"2026-05-07\",\"return\":\"2057-04-27\",\"duration\":57,\"status\":\"pending\",\"user_approve_id\":10}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Affiche les d\u00e9tails d'une demande de permission sp\u00e9cifique.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/permission-requests\/:permission_request",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/permission-requests\/:permission_request",
                            "variable": [
                                {
                                    "id": "permission_request",
                                    "key": "permission_request",
                                    "value": "est",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/permission-requests\/est could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Met \u00e0 jour une demande de permission si elle est encore en attente.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/permission-requests\/:permission_request",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/permission-requests\/:permission_request",
                            "variable": [
                                {
                                    "id": "permission_request",
                                    "key": "permission_request",
                                    "value": "sunt",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"reason\":\"totam\",\"departure\":\"2026-05-07\",\"return\":\"2085-11-16\",\"duration\":74,\"status\":\"approved\",\"user_approve_id\":19}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Archiver (soft delete) les presences sp\u00e9cifi\u00e9es.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/permission-requests\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/permission-requests\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[7]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaurer les permission_requests archiv\u00e9s.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/permission-requests\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/permission-requests\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[7]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "D\u00e9partements",
            "description": "\nGestion des d\u00e9partements",
            "item": [
                {
                    "name": "Lister les d\u00e9partements",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/departments\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/departments\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":46,\"nbre_items\":20,\"filter_value\":\"rasquhabvgjboloj\",\"start_date\":\"2026-05-07T16:23:58\",\"end_date\":\"2026-05-07T16:23:58\",\"responsible_id\":4,\"health_center_id\":5,\"trashed\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Ajouter un d\u00e9partement",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/departments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/departments"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"responsible_id\":9,\"health_center_id\":10,\"name\":\"arkvqmb\",\"description\":\"Et sed qui commodi vel illo.\",\"phone\":\"blhaqcceleqsa\",\"email\":\"luettgen.nedra@example.com\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher les infos d'un d\u00e9partement",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/departments\/:department_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/departments\/:department_id",
                            "variable": [
                                {
                                    "id": "department_id",
                                    "key": "department_id",
                                    "value": "1",
                                    "description": "The ID of the department."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/departments\/1 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Modifier un d\u00e9partement",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/departments\/:department_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/departments\/:department_id",
                            "variable": [
                                {
                                    "id": "department_id",
                                    "key": "department_id",
                                    "value": "1",
                                    "description": "The ID of the department."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"responsible_id\":9,\"health_center_id\":4,\"name\":\"nltamaploqnzonjuujboug\",\"description\":\"Culpa molestiae omnis maxime sint tempore.\",\"phone\":\"rkugltgm\",\"email\":\"bwilliamson@example.com\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Archiver plusieurs medical_books",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/departments\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/departments\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[10]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaurer plusieurs medical_books",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/departments\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/departments\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[15]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Endpoints",
            "description": "",
            "item": [
                {
                    "name": "Lister les rendez-vous",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/rendez-vous\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/rendez-vous\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":17,\"nbre_items\":11,\"filter_value\":\"shqpxiqmaxmcberrudeukmssr\",\"patient_id\":13,\"doctor_id\":5,\"start_date\":\"2026-05-07\",\"end_date\":\"2026-05-07\",\"date\":\"2026-05-07\",\"status\":\"validated\",\"trashed\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Ajouter un rendez-vous",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/rendez-vous",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/rendez-vous"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"patient_id\":19,\"doctor_id\":4,\"date\":\"2026-05-07\",\"hour\":\"16:23\",\"description\":\"Et iure qui quaerat libero possimus sed.\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher les infos d'un rendez-vous",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/rendez-vous\/:rendez_vous",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/rendez-vous\/:rendez_vous",
                            "variable": [
                                {
                                    "id": "rendez_vous",
                                    "key": "rendez_vous",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/rendez-vous\/1 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Modifier un rendez-vous",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/rendez-vous\/:rendez_vous",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/rendez-vous\/:rendez_vous",
                            "variable": [
                                {
                                    "id": "rendez_vous",
                                    "key": "rendez_vous",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"patient_id\":15,\"doctor_id\":2,\"date\":\"2026-05-07\",\"hour\":\"16:23\",\"description\":\"Sed perspiciatis consequatur vel hic corrupti.\",\"status\":\"done\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Archiver plusieurs rendez_vous",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/rendez-vous\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/rendez-vous\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[4]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaurer plusieurs rendez_vous",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/rendez-vous\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/rendez-vous\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[18]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/dashboardfounder",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/dashboardfounder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/dashboardfounder"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"health_center_id\":7}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Ex\u00e9cutions de planning de soins",
            "description": "\nGestion des ex\u00e9cutions de planning de soins",
            "item": [
                {
                    "name": "POST api\/care-schedule-executions\/all",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/care-schedule-executions\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/care-schedule-executions\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":71,\"nbre_items\":13,\"filter_value\":\"cyhavajbmyn\",\"care_schedule_id\":7,\"nurse_id\":20,\"status\":\"done\",\"nursing_act_id\":4,\"date_from\":\"2026-05-07\",\"date_to\":\"2026-05-07\",\"trashed\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/care-schedule-executions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/care-schedule-executions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/care-schedule-executions"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"care_schedule_id\":9,\"nurse_id\":19,\"scheduled_at\":\"2026-05-07T16:23:58\",\"executed_at\":\"2026-05-07T16:23:58\",\"status\":\"pending\",\"observations\":\"autem\",\"nursing_act_id\":7}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/care-schedule-executions\/{care_schedule_execution}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/care-schedule-executions\/:care_schedule_execution",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/care-schedule-executions\/:care_schedule_execution",
                            "variable": [
                                {
                                    "id": "care_schedule_execution",
                                    "key": "care_schedule_execution",
                                    "value": "11",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/care-schedule-executions\/11 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/care-schedule-executions\/{care_schedule_execution}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/care-schedule-executions\/:care_schedule_execution",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/care-schedule-executions\/:care_schedule_execution",
                            "variable": [
                                {
                                    "id": "care_schedule_execution",
                                    "key": "care_schedule_execution",
                                    "value": "19",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"care_schedule_id\":8,\"nurse_id\":9,\"scheduled_at\":\"2026-05-07T16:23:58\",\"executed_at\":\"2026-05-07T16:23:58\",\"status\":\"done\",\"observations\":\"sed\",\"nursing_act_id\":15}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/care-schedule-executions\/trash",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/care-schedule-executions\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/care-schedule-executions\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[18]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/care-schedule-executions\/restore",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/care-schedule-executions\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/care-schedule-executions\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[2]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Forum",
            "description": "",
            "item": [
                {
                    "name": "Cat\u00e9gories\n\nGestion des cat\u00e9gories de forum",
                    "description": "",
                    "item": [
                        {
                            "name": "Lister les categories de forum",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/forum\/categories\/all",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/forum\/categories\/all"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"page_items\":63,\"nbre_items\":10,\"start_date\":\"2026-05-07\",\"end_date\":\"2026-05-07\",\"filter_value\":\"xcketvazpibbcvbjv\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Ajouter une cat\u00e9gorie de forum",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/forum\/categories",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/forum\/categories"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"miaduswomrbtomdfidn\",\"description\":\"Culpa laboriosam et sit necessitatibus numquam at magnam.\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Afficher les infos d'une cat\u00e9gorie de forum",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/forum\/categories\/:forum_category",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/forum\/categories\/:forum_category",
                                    "variable": [
                                        {
                                            "id": "forum_category",
                                            "key": "forum_category",
                                            "value": "1",
                                            "description": ""
                                        }
                                    ]
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [
                                        {
                                            "key": "cache-control",
                                            "value": "no-cache, private"
                                        },
                                        {
                                            "key": "content-type",
                                            "value": "application\/json"
                                        },
                                        {
                                            "key": "access-control-allow-origin",
                                            "value": "*"
                                        }
                                    ],
                                    "code": 404,
                                    "body": "{\n    \"message\": \"The route api\/forum\/categories\/1 could not be found.\"\n}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Modifier une cat\u00e9gorie de forum",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/forum\/categories\/:forum_category",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/forum\/categories\/:forum_category",
                                    "variable": [
                                        {
                                            "id": "forum_category",
                                            "key": "forum_category",
                                            "value": "1",
                                            "description": ""
                                        }
                                    ]
                                },
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"teaotizkcnkoit\",\"description\":\"Quam cum ea blanditiis non ipsum adipisci vel.\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Archiver plusieurs categories de forum",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/forum\/categories\/trash",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/forum\/categories\/trash"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"ids\":[6]}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Restaurer plusieurs categories de forum",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/forum\/categories\/restore",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/forum\/categories\/restore"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"ids\":[7]}"
                                },
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Questions\n\nGestion des questions de forum",
                    "description": "",
                    "item": [
                        {
                            "name": "Lister les questions de forum",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/forum\/questions\/all",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/forum\/questions\/all"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"page_items\":59,\"nbre_items\":17,\"filter_value\":\"skfapvlg\",\"start_date\":\"2026-05-07\",\"end_date\":\"2026-05-07\",\"forum_category_id\":13,\"user_id\":1}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Ajouter une question de forum",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/forum\/questions",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/forum\/questions"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"forum_category_id\":20,\"title\":\"iktwhqza\",\"body\":\"quod\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Afficher les infos d'une question de forum",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/forum\/questions\/:forum_question",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/forum\/questions\/:forum_question",
                                    "variable": [
                                        {
                                            "id": "forum_question",
                                            "key": "forum_question",
                                            "value": "1",
                                            "description": ""
                                        }
                                    ]
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [
                                        {
                                            "key": "cache-control",
                                            "value": "no-cache, private"
                                        },
                                        {
                                            "key": "content-type",
                                            "value": "application\/json"
                                        },
                                        {
                                            "key": "access-control-allow-origin",
                                            "value": "*"
                                        }
                                    ],
                                    "code": 404,
                                    "body": "{\n    \"message\": \"The route api\/forum\/questions\/1 could not be found.\"\n}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Modifier une question de forum",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/forum\/questions\/:forum_question",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/forum\/questions\/:forum_question",
                                    "variable": [
                                        {
                                            "id": "forum_question",
                                            "key": "forum_question",
                                            "value": "1",
                                            "description": ""
                                        }
                                    ]
                                },
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"forum_category_id\":5,\"title\":\"t\",\"body\":\"laudantium\",\"is_resolved\":false}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Archiver plusieurs questions de forum",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/forum\/questions\/trash",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/forum\/questions\/trash"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"ids\":[6]}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Restaurer plusieurs questions de forum",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/forum\/questions\/restore",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/forum\/questions\/restore"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"ids\":[15]}"
                                },
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "R\u00e9ponses\n\nGestion des r\u00e9ponses aux questions de forum",
                    "description": "",
                    "item": [
                        {
                            "name": "Lister les r\u00e9ponses de forum",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/forum\/answers\/all",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/forum\/answers\/all"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"page_items\":35,\"nbre_items\":1,\"start_date\":\"2026-05-07\",\"end_date\":\"2026-05-07\",\"filter_value\":\"bfpuwfobib\",\"forum_category_id\":17,\"forum_question_id\":4,\"user_id\":4}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Ajouter une r\u00e9ponse \u00e0 une question de forum",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/forum\/answers",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/forum\/answers"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"forum_question_id\":4,\"body\":\"qui\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Afficher les infos d'une r\u00e9ponse \u00e0 une question de forum",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/forum\/answers\/:forum_answer",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/forum\/answers\/:forum_answer",
                                    "variable": [
                                        {
                                            "id": "forum_answer",
                                            "key": "forum_answer",
                                            "value": "1",
                                            "description": ""
                                        }
                                    ]
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [
                                        {
                                            "key": "cache-control",
                                            "value": "no-cache, private"
                                        },
                                        {
                                            "key": "content-type",
                                            "value": "application\/json"
                                        },
                                        {
                                            "key": "access-control-allow-origin",
                                            "value": "*"
                                        }
                                    ],
                                    "code": 404,
                                    "body": "{\n    \"message\": \"The route api\/forum\/answers\/1 could not be found.\"\n}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Modifier une r\u00e9ponse \u00e0 une question de forum",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/forum\/answers\/:forum_answer",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/forum\/answers\/:forum_answer",
                                    "variable": [
                                        {
                                            "id": "forum_answer",
                                            "key": "forum_answer",
                                            "value": "1",
                                            "description": ""
                                        }
                                    ]
                                },
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"forum_question_id\":15,\"body\":\"est\",\"is_accepted\":false}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Archiver plusieurs questions de forum",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/forum\/answers\/trash",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/forum\/answers\/trash"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"ids\":[2]}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Restaurer plusieurs r\u00e9ponses aux questions de forum",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/forum\/answers\/restore",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/forum\/answers\/restore"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"ids\":[1]}"
                                },
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                }
            ]
        },
        {
            "name": "Laboratoire",
            "description": "\nGestion des demandes et r\u00e9sultats d'examens laboratoire",
            "item": [
                {
                    "name": "Lister les demandes d'examens",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/lab-requests\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/lab-requests\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":49,\"nbre_items\":8,\"filter_value\":\"yjjepgnpwdhreqqnirspsj\",\"patient_id\":9,\"doctor_id\":12,\"technician_id\":4,\"status\":\"requested\",\"lab_exam_pack_id\":9,\"date_from\":\"2026-05-07\",\"date_to\":\"2026-05-07\",\"trashed\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Cr\u00e9er une demande d'examen labo",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/lab-requests",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/lab-requests"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"patient_id\":10,\"doctor_id\":14,\"medical_page_id\":18,\"lab_exam_catalog_id\":11,\"lab_exam_pack_id\":16,\"exam_name\":\"dnueefwplegzpwrgykvywqsjg\",\"clinical_info\":\"ut\",\"price\":39,\"requested_at\":\"2026-05-07T16:23:58\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher une demande d'examen",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/lab-requests\/:lab_request",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/lab-requests\/:lab_request",
                            "variable": [
                                {
                                    "id": "lab_request",
                                    "key": "lab_request",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/lab-requests\/1 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Mettre \u00e0 jour le statut et les r\u00e9sultats d'un examen",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/lab-requests\/:lab_request",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/lab-requests\/:lab_request",
                            "variable": [
                                {
                                    "id": "lab_request",
                                    "key": "lab_request",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"in\",\"technician_id\":15,\"validator_id\":12,\"clinical_info\":\"est\",\"sampled_at\":\"2026-05-07T16:23:58\",\"result_at\":\"2026-05-07T16:23:58\",\"validated_at\":\"2026-05-07T16:23:58\",\"price\":72,\"results\":[{\"parameter_name\":\"magnam\",\"value\":\"voluptatem\",\"unit\":\"qui\",\"reference_range\":\"odit\",\"is_abnormal\":true,\"notes\":\"voluptatem\"}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Archiver des demandes labo",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/lab-requests\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/lab-requests\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[8]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaurer des demandes labo",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/lab-requests\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/lab-requests\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[18]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "M\u00e9dicaments",
            "description": "\nGestion des m\u00e9dicaments",
            "item": [
                {
                    "name": "Lister les m\u00e9dicaments",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medications\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medications\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":87,\"nbre_items\":10,\"start_date\":\"2026-05-07\",\"end_date\":\"2026-05-07\",\"filter_value\":\"nsiaajekichn\",\"name\":\"fokbkirfyzxvcdbrc\",\"trashed\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Ajout d'un m\u00e9dicament",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medications",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medications"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"hbgrdcarykuqcc\",\"description\":\"Ea tenetur cupiditate consequuntur eos saepe iusto.\",\"photo\":\"perferendis\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher un m\u00e9dicament",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medications\/:medication_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medications\/:medication_id",
                            "variable": [
                                {
                                    "id": "medication_id",
                                    "key": "medication_id",
                                    "value": "1",
                                    "description": "The ID of the medication."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/medications\/1 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Modifier un m\u00e9dicament",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medications\/:medication_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medications\/:medication_id",
                            "variable": [
                                {
                                    "id": "medication_id",
                                    "key": "medication_id",
                                    "value": "1",
                                    "description": "The ID of the medication."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"yuib\",\"description\":\"Est aliquam voluptatem animi facilis eius voluptatem fugiat eius.\",\"photo\":\"est\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Archiver plusieurs m\u00e9dicaments",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medications\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medications\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[7]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaurer plusieurs m\u00e9dicaments",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medications\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medications\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[16]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Notes de frais \/ Expense Reports",
            "description": "\nGestion des notes de frais",
            "item": [
                {
                    "name": "Afficher les notes de frais",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/expense-reports\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/expense-reports\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"paid\",\"date\":\"2026-05-07\",\"page_items\":79,\"nbre_items\":6,\"filter_value\":\"mhwagttinjwdqdfdimhw\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher une note de frais sp\u00e9cifique",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/expense-reports\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/expense-reports\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "a",
                                    "description": "The ID of the expense report."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/expense-reports\/a could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Cr\u00e9er une note de frais",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/expense-reports",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/expense-reports"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"libelle\":\"et\",\"amount\":46,\"description\":\"Voluptas voluptatem velit esse eveniet rerum amet.\",\"date\":\"2026-05-07\",\"status\":\"paid\",\"idUserApprove\":4}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Mettre \u00e0 jour une note de frais",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/expense-reports\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/expense-reports\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "et",
                                    "description": "The ID of the expense report."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"libelle\":\"ratione\",\"amount\":29,\"description\":\"Omnis quos ea molestiae non voluptates.\",\"date\":\"2026-05-07\",\"status\":\"paid\",\"idUserApprove\":6}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Archiver (soft delete) les notes de frais.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/expense-reports\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/expense-reports\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[15]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaurer les notes de frais archiv\u00e9es.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/expense-reports\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/expense-reports\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[9]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Supprimer d\u00e9finitivement les notes de frais sp\u00e9cifi\u00e9es.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/expense-reports\/destroy",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/expense-reports\/destroy"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[9]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Nourritures",
            "description": "\nGestion des nourritures",
            "item": [
                {
                    "name": "Lister les nourritures",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/foods\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/foods\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":8,\"nbre_items\":17,\"filter_value\":\"qmvfbm\",\"trashed\":true,\"start_date\":\"2026-05-07\",\"end_date\":\"2026-05-07\",\"name\":\"onbdywmic\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Ajouter une nourriture",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/foods",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/foods"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"lzwjzhpqyccgmtrquaycdh\",\"description\":\"Laboriosam dolores debitis impedit eos tempore.\",\"potassium_mg\":\"wfmunvwj\",\"sodium_mg\":\"nlwtaccqwpejrttrnjh\",\"phosphorus_mg\":\"opouvwnfbbprkqqbmolhc\",\"photo\":\"rhotzwmuvwcvfpfzguypdehx\",\"food_alternatives\":[{\"alternative_id\":9,\"reason\":\"miwatoguxsalh\"}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher une nourriture",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/foods\/:food_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/foods\/:food_id",
                            "variable": [
                                {
                                    "id": "food_id",
                                    "key": "food_id",
                                    "value": "6",
                                    "description": "The ID of the food."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/foods\/6 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Modifier une nourriture",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/foods\/:food_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/foods\/:food_id",
                            "variable": [
                                {
                                    "id": "food_id",
                                    "key": "food_id",
                                    "value": "12",
                                    "description": "The ID of the food."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"m\",\"description\":\"Rerum alias inventore recusandae sunt.\",\"potassium_mg\":\"ykeofpux\",\"sodium_mg\":\"ygncjtyqztenb\",\"phosphorus_mg\":\"p\",\"photo\":\"nho\",\"food_alternatives\":[{\"alternative_id\":8,\"reason\":\"mshfz\"}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Archiver plusieurs nourritures",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/foods\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/foods\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[20]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaurer plusieurs nourritures",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/foods\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/foods\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[14]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Packs d'examens de laboratoire",
            "description": "\nGestion des packs d'examens de laboratoire",
            "item": [
                {
                    "name": "POST api\/lab-exam-packs\/all",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/lab-exam-packs\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/lab-exam-packs\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":85,\"nbre_items\":1,\"filter_value\":\"kzhawrdqbgrmdnhxmpeqzm\",\"is_active\":true,\"trashed\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/lab-exam-packs",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/lab-exam-packs",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/lab-exam-packs"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vii\",\"description\":\"Aliquam ex odio qui quod nulla voluptatem illo ea.\",\"price\":88,\"is_active\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/lab-exam-packs\/{labExamPack_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/lab-exam-packs\/:labExamPack_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/lab-exam-packs\/:labExamPack_id",
                            "variable": [
                                {
                                    "id": "labExamPack_id",
                                    "key": "labExamPack_id",
                                    "value": "18",
                                    "description": "The ID of the labExamPack."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/lab-exam-packs\/18 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/lab-exam-packs\/{labExamPack_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/lab-exam-packs\/:labExamPack_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/lab-exam-packs\/:labExamPack_id",
                            "variable": [
                                {
                                    "id": "labExamPack_id",
                                    "key": "labExamPack_id",
                                    "value": "4",
                                    "description": "The ID of the labExamPack."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"xsxjc\",\"description\":\"Quia eum deleniti id quidem consequuntur ipsum.\",\"price\":69,\"is_active\":false,\"exam_ids\":[8]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/lab-exam-packs\/{labExamPack_id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/lab-exam-packs\/:labExamPack_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/lab-exam-packs\/:labExamPack_id",
                            "variable": [
                                {
                                    "id": "labExamPack_id",
                                    "key": "labExamPack_id",
                                    "value": "17",
                                    "description": "The ID of the labExamPack."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/lab-exam-packs\/trash",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/lab-exam-packs\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/lab-exam-packs\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[16]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/lab-exam-packs\/restore",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/lab-exam-packs\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/lab-exam-packs\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[19]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Page M\u00e9dicale",
            "description": "\nGestion de pages d'un carnet m\u00e9dical",
            "item": [
                {
                    "name": "Lister les pagse de carnets m\u00e9dicaux",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medical-pages\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medical-pages\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":87,\"nbre_items\":5,\"filter_value\":\"tiamzyzcgydrakakdy\",\"doctor_id\":11,\"medical_book_id\":16,\"department_id\":8,\"consultation_date\":\"2026-05-07\",\"status\":\"completed\",\"start_date\":\"2026-05-07T16:23:58\",\"end_date\":\"2026-05-07T16:23:58\",\"trashed\":false,\"consultation_type\":\"follow_up\",\"disease_history\":\"aut\",\"current_treatments\":\"soluta\",\"family_history\":\"inventore\",\"blood_pressure\":\"ipsam\",\"heart_rate\":4,\"respiratory_rate\":15,\"temperature_c\":5.644305,\"spo2\":16,\"blood_glucose\":14.3612,\"weight_kg\":673026.35,\"height_cm\":5586562.722452287,\"bmi\":32699175.4,\"pain_score\":16,\"general_condition\":\"good\",\"general_condition_notes\":\"aut\",\"physical_examination\":\"minus\",\"hypothesis\":\"nobis\",\"icd10_code\":\"et\",\"severity\":\"moderate\",\"discharge_decision\":\"referred\",\"next_appointment\":\"2026-05-07\",\"additional_notes\":\"est\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Ajouter une page de carnet m\u00e9dical",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medical-pages",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medical-pages"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"medical_book_id\":14,\"department_id\":3,\"doctor_id\":8,\"consultation_date\":\"2026-05-07\",\"reason_for_visit\":\"dolore\",\"clinical_notes\":\"facilis\",\"diagnosis\":\"aut\",\"free_notes\":\"corporis\",\"status\":\"in_progress\",\"consultation_type\":\"emergency\",\"disease_history\":\"neque\",\"current_treatments\":\"enim\",\"family_history\":\"et\",\"blood_pressure\":\"sit\",\"heart_rate\":13,\"respiratory_rate\":10,\"temperature_c\":106255.3859543,\"spo2\":2,\"blood_glucose\":771669.6854,\"weight_kg\":2025.89348387,\"height_cm\":37146583.10469,\"bmi\":0.610641,\"pain_score\":4,\"general_condition\":\"critical\",\"general_condition_notes\":\"dolore\",\"physical_examination\":\"omnis\",\"hypothesis\":\"maxime\",\"icd10_code\":\"totam\",\"severity\":\"critical\",\"discharge_decision\":\"home\",\"next_appointment\":\"2026-05-07\",\"additionnal_notes\":\"facere\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher les infos d'une page de carnet m\u00e9dical",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medical-pages\/:medical_page",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medical-pages\/:medical_page",
                            "variable": [
                                {
                                    "id": "medical_page",
                                    "key": "medical_page",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/medical-pages\/1 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Modifier une page de carnet m\u00e9dical",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medical-pages\/:medical_page",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medical-pages\/:medical_page",
                            "variable": [
                                {
                                    "id": "medical_page",
                                    "key": "medical_page",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"medical_book_id\":18,\"department_id\":13,\"doctor_id\":2,\"consultation_date\":\"2026-05-07\",\"reason_for_visit\":\"soluta\",\"clinical_notes\":\"velit\",\"diagnosis\":\"nihil\",\"free_notes\":\"voluptatem\",\"recommendations\":\"assumenda\",\"status\":\"completed\",\"consultation_type\":\"emergency\",\"disease_history\":\"perspiciatis\",\"current_treatments\":\"magni\",\"family_history\":\"voluptatum\",\"blood_pressure\":\"tptoukkfxvhvtan\",\"heart_rate\":2,\"respiratory_rate\":15,\"temperature_c\":3175.07869,\"spo2\":9,\"blood_glucose\":169903688.290478,\"weight_kg\":203152.76105489,\"height_cm\":47097.415481,\"bmi\":102.176,\"pain_score\":20,\"general_condition\":\"critical\",\"general_condition_notes\":\"aut\",\"physical_examination\":\"accusantium\",\"hypothesis\":\"porro\",\"icd10_code\":\"est\",\"severity\":\"moderate\",\"discharge_decision\":\"referred\",\"next_appointment\":\"2026-05-07\",\"additionnal_notes\":\"ex\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Archiver plusieurs medical_pages",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medical-pages\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medical-pages\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[8]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaurer plusieurs medical_pages",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medical-pages\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medical-pages\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[8]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Permissions",
            "description": "\nGestion des permissions",
            "item": [
                {
                    "name": "Afficher la liste des permissions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/permissions\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/permissions\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":66,\"nbre_items\":2,\"filter_value\":\"exercitationem\",\"ressource\":\"sequi\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/permissions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/permissions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/permissions"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"permissions\":[{\"name\":\"voluptas\",\"description\":\"Et temporibus earum quia omnis autem aperiam maiores.\",\"ressource\":\"velit\",\"code\":\"consequatur\"}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher une permission sp\u00e9cifique",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/permissions\/:permission",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/permissions\/:permission",
                            "variable": [
                                {
                                    "id": "permission",
                                    "key": "permission",
                                    "value": "et",
                                    "description": "The permission."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/permissions\/et could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Mettre a jour une permission sp\u00e9cifique",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/permissions\/:permission",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/permissions\/:permission",
                            "variable": [
                                {
                                    "id": "permission",
                                    "key": "permission",
                                    "value": "atque",
                                    "description": "The permission."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"laborum\",\"permissions\":[{\"description\":\"Id dignissimos ut autem deleniti placeat officiis officiis.\",\"ressource\":\"a\",\"code\":\"placeat\"}]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Pharmacie \u2014 Lots & Stock",
            "description": "",
            "item": [
                {
                    "name": "POST api\/medication-batches\/all",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medication-batches\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medication-batches\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":27,\"nbre_items\":2,\"filter_value\":\"tneqxqnlwc\",\"start_date\":\"2026-05-07\",\"end_date\":\"2026-05-07\",\"medication_id\":11,\"expiry_alert\":false,\"trashed\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/medication-batches",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medication-batches",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medication-batches"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"medication_id\":2,\"batch_number\":\"s\",\"expiry_date\":\"2026-05-07\",\"quantity_in\":18,\"purchase_price\":23,\"supplier\":\"mvmio\",\"received_date\":\"2026-05-07\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/medication-batches\/{medication_batch}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medication-batches\/:medication_batch",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medication-batches\/:medication_batch",
                            "variable": [
                                {
                                    "id": "medication_batch",
                                    "key": "medication_batch",
                                    "value": "18",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/medication-batches\/18 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/medication-batches\/{medication_batch}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medication-batches\/:medication_batch",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medication-batches\/:medication_batch",
                            "variable": [
                                {
                                    "id": "medication_batch",
                                    "key": "medication_batch",
                                    "value": "13",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"batch_number\":\"loaexmbrizxmcdd\",\"expiry_date\":\"2026-05-07\",\"quantity_in\":12,\"purchase_price\":68,\"supplier\":\"c\",\"received_date\":\"2026-05-07\",\"expiry_alert\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/medication-batches\/trash",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medication-batches\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medication-batches\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[13]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/medication-batches\/restore",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medication-batches\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medication-batches\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[10]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Planification des soins",
            "description": "\nGestion des plannings de soins infirmiers",
            "item": [
                {
                    "name": "Lister les plannings de soins",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/care-schedules\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/care-schedules\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":46,\"nbre_items\":3,\"start_date\":\"2026-05-07\",\"end_date\":\"2026-05-07\",\"filter_value\":\"fsqpehxgqzefv\",\"is_active\":false,\"trashed\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Ajout d'un planning de soin",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/care-schedules",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/care-schedules"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"patient_id\":\"dolor\",\"admission_id\":18,\"medical_page_id\":\"eos\",\"nursing_act_catalog_id\":\"optio\",\"act_name\":\"cahuqtjqljlv\",\"dosage\":\"pkgsdo\",\"scheduled_time\":\"16:23\",\"frequency\":\"zpweeeqtyfztudckymzqobkp\",\"start_date\":\"2026-05-07T16:23:58\",\"end_date\":\"2118-12-28\",\"is_active\":true,\"notes\":\"sed\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher un planning de soin",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/care-schedules\/:care_schedule",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/care-schedules\/:care_schedule",
                            "variable": [
                                {
                                    "id": "care_schedule",
                                    "key": "care_schedule",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/care-schedules\/1 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Modifier un planning de soin",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/care-schedules\/:care_schedule",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/care-schedules\/:care_schedule",
                            "variable": [
                                {
                                    "id": "care_schedule",
                                    "key": "care_schedule",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"admission_id\":17,\"act_name\":\"mzaqozut\",\"dosage\":\"hasvjzhdesp\",\"scheduled_time\":\"16:23\",\"frequency\":\"bsdiftqicpcqowxobdff\",\"start_date\":\"2026-05-07T16:23:58\",\"end_date\":\"2104-01-06\",\"is_active\":false,\"notes\":\"sit\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Archiver plusieurs plannings de soins",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/care-schedules\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/care-schedules\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[19]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaurer plusieurs plannings de soins",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/care-schedules\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/care-schedules\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[1]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Prescriptions",
            "description": "\nGestion des prescriptions",
            "item": [
                {
                    "name": "Lister les prescriptions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/prescriptions\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/prescriptions\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":41,\"nbre_items\":19,\"filter_value\":\"hr\",\"patient_id\":12,\"medical_page_id\":3,\"status\":\"cancelled\",\"start_date\":\"2026-05-07T16:23:58\",\"end_date\":\"2026-05-07T16:23:58\",\"trashed\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Ajouter une prescription",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/prescriptions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/prescriptions"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"patient_id\":8,\"medical_page_id\":3,\"start_date\":\"2026-05-07\",\"end_date\":\"2103-08-22\",\"frequency\":\"corrupti\",\"dosage\":\"corrupti\",\"description\":\"Harum qui possimus eaque est et.\",\"status\":\"pending\",\"medications\":[{\"medication_id\":3,\"dosage\":4,\"frequency\":\"animi\",\"description\":\"Voluptatem quod excepturi tempore quod nostrum.\"}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher les infos d'une prescription",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/prescriptions\/:prescription_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/prescriptions\/:prescription_id",
                            "variable": [
                                {
                                    "id": "prescription_id",
                                    "key": "prescription_id",
                                    "value": "3",
                                    "description": "The ID of the prescription."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/prescriptions\/3 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Modifier une prescription",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/prescriptions\/:prescription_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/prescriptions\/:prescription_id",
                            "variable": [
                                {
                                    "id": "prescription_id",
                                    "key": "prescription_id",
                                    "value": "3",
                                    "description": "The ID of the prescription."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"patient_id\":18,\"medical_page_id\":6,\"start_date\":\"2026-05-07\",\"end_date\":\"2059-09-03\",\"frequency\":\"minus\",\"dosage\":\"expedita\",\"description\":\"Et voluptatem provident beatae quis voluptatem qui incidunt.\",\"status\":\"cancelled\",\"medications\":[{\"medication_id\":3,\"dosage\":36,\"frequency\":\"in\",\"description\":\"Et laborum error recusandae voluptatem voluptatem voluptatibus quo ut.\"}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Archiver plusieurs prescriptions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/prescriptions\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/prescriptions\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[18]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaurer plusieurs prescriptions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/prescriptions\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/prescriptions\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[6]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Prises de M\u00e9dicaments",
            "description": "\nGestion des prises de m\u00e9dicaments",
            "item": [
                {
                    "name": "Lister les prises de m\u00e9dicaments",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medications-intakes\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medications-intakes\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":63,\"nbre_items\":8,\"filter_value\":\"lds\",\"trashed\":false,\"prescription_id\":3,\"medication_id\":11,\"start_date\":\"2026-05-07\",\"end_date\":\"2106-12-28\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Ajouter une prise de m\u00e9dicament",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medications-intakes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medications-intakes"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"prescription_id\":15,\"medication_id\":19,\"is_taken\":false,\"date_time\":\"2026-05-07 16:23\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher une prise de m\u00e9dicament",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medications-intakes\/:medication_intake",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medications-intakes\/:medication_intake",
                            "variable": [
                                {
                                    "id": "medication_intake",
                                    "key": "medication_intake",
                                    "value": "19",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/medications-intakes\/19 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Modifier une prise de m\u00e9dicament",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medications-intakes\/:medication_intake",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medications-intakes\/:medication_intake",
                            "variable": [
                                {
                                    "id": "medication_intake",
                                    "key": "medication_intake",
                                    "value": "14",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"prescription_id\":5,\"medication_id\":9,\"is_taken\":false,\"date_time\":\"2026-05-07 16:23\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Archiver plusieurs prises de m\u00e9dicaments",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medications-intakes\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medications-intakes\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[7]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaurer plusieurs prises de m\u00e9dicaments",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/medications-intakes\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/medications-intakes\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[11]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Recettes",
            "description": "\nGestion des recettes",
            "item": [
                {
                    "name": "Lister les recettes",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/recipes\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/recipes\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":8,\"nbre_items\":12,\"start_date\":\"2026-05-07\",\"end_date\":\"2026-05-07\",\"filter_value\":\"jnjwrcw\",\"is_low_potassium\":true,\"is_low_sodium\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Ajouter une recette",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/recipes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/recipes"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"optio\",\"description\":\"Ab excepturi temporibus qui qui iste suscipit odio.\",\"instructions\":\"quo\",\"preparation_time\":7,\"servings\":11,\"is_low_potassium\":false,\"is_low_sodium\":false,\"calories\":19,\"sodium_mg\":19,\"potassium_mg\":16,\"photo\":\"sed\",\"foods\":[{\"food_id\":13,\"quantity\":\"facere\",\"description\":\"Non animi voluptatem voluptas recusandae impedit harum.\"}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher les infos d'une recette",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/recipes\/:recipe_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/recipes\/:recipe_id",
                            "variable": [
                                {
                                    "id": "recipe_id",
                                    "key": "recipe_id",
                                    "value": "3",
                                    "description": "The ID of the recipe."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/recipes\/3 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Modifier une recette",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/recipes\/:recipe_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/recipes\/:recipe_id",
                            "variable": [
                                {
                                    "id": "recipe_id",
                                    "key": "recipe_id",
                                    "value": "17",
                                    "description": "The ID of the recipe."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"possimus\",\"description\":\"Repudiandae voluptatem beatae odit.\",\"instructions\":\"repellendus\",\"preparation_time\":\"corporis\",\"servings\":\"ut\",\"is_low_potassium\":false,\"is_low_sodium\":true,\"calories\":\"quo\",\"sodium_mg\":\"vero\",\"potassium_mg\":\"dolorum\",\"photo\":\"voluptatum\",\"foods\":[{\"food_id\":17,\"quantity\":\"aut\",\"description\":\"Autem ea et id blanditiis itaque sint ducimus quis.\"}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Archiver plusieurs recettes",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/recipes\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/recipes\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[2]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaurer plusieurs recettes",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/recipes\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/recipes\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[15]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Retenue sur salaire \/ Salary deduction",
            "description": "\nGestion des retenus sur salaire",
            "item": [
                {
                    "name": "Afficher la liste filtr\u00e9e des retenues sur salaire",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/salary-deductions\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/salary-deductions\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_id\":11,\"user_approve_id\":1,\"date\":\"2026-05-07\",\"status\":\"in_progress\",\"page_items\":6,\"trashed\":false,\"nbre_items\":2,\"filter_value\":\"ivplh\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Show the form for creating a new resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/salary-deductions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/salary-deductions"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"salary_deductions\":[{\"user_id\":9,\"user_approve_id\":16,\"reason\":\"ipsum\",\"amount\":72,\"date\":\"2026-05-07\",\"status\":\"rejected\"}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher une retenue sur salaire sp\u00e9cifique",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/salary-deductions\/:salary_deduction",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/salary-deductions\/:salary_deduction",
                            "variable": [
                                {
                                    "id": "salary_deduction",
                                    "key": "salary_deduction",
                                    "value": "4",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/salary-deductions\/4 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Mettre \u00e0 jour une retenue sur salaire sp\u00e9cifique",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/salary-deductions\/:salary_deduction",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/salary-deductions\/:salary_deduction",
                            "variable": [
                                {
                                    "id": "salary_deduction",
                                    "key": "salary_deduction",
                                    "value": "16",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_id\":12,\"user_approve_id\":5,\"reason\":\"ipsa\",\"amount\":57,\"date\":\"2026-05-07\",\"status\":\"pending_approval\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Archiver (soft delete) les retenues sur salaire sp\u00e9cifi\u00e9es.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/salary-deductions\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/salary-deductions\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[7]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaurer les feedbacks archiv\u00e9s.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/salary-deductions\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/salary-deductions\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[13]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "R\u00f4les",
            "description": "\nGestion des r\u00f4les",
            "item": [
                {
                    "name": "Lister les roles",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/roles\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/roles\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":37,\"nbre_items\":4,\"filter_value\":\"sed\",\"types\":[\"non\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Ajouter une liste de role",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/roles",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/roles"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"voluptatem\",\"permissions\":[2],\"description\":\"Ullam eum et qui eveniet autem qui eaque.\",\"type\":\"consequatur\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher un role sp\u00e9cifique",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/roles\/:role_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/roles\/:role_id",
                            "variable": [
                                {
                                    "id": "role_id",
                                    "key": "role_id",
                                    "value": "1",
                                    "description": "The ID of the role."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/roles\/1 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Modifier ou un role sp\u00e9cifique",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/roles\/:role_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/roles\/:role_id",
                            "variable": [
                                {
                                    "id": "role_id",
                                    "key": "role_id",
                                    "value": "1",
                                    "description": "The ID of the role."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"vel\",\"permissions\":[8],\"description\":\"Nostrum error dolorem soluta molestiae laborum a.\",\"type\":\"voluptatem\"}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Sanctions",
            "description": "\nGestion des sanctions utilisateurs",
            "item": [
                {
                    "name": "List sanctions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/sanctions\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/sanctions\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":9,\"nbre_items\":1,\"filter_value\":\"voluptatum\",\"trashed\":false,\"user_id\":2,\"type\":\"necessitatibus\",\"created_by\":16}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Show sanction",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/sanctions\/:sanction_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/sanctions\/:sanction_id",
                            "variable": [
                                {
                                    "id": "sanction_id",
                                    "key": "sanction_id",
                                    "value": "13",
                                    "description": "The ID of the sanction."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/sanctions\/13 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create sanctions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/sanctions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/sanctions"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"sanctions\":[{\"user_id\":4,\"type\":\"est\",\"reasons\":\"sed\",\"description\":\"Aspernatur quis itaque aliquam tempore voluptatem qui occaecati non.\"}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update sanction",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/sanctions\/:sanction_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/sanctions\/:sanction_id",
                            "variable": [
                                {
                                    "id": "sanction_id",
                                    "key": "sanction_id",
                                    "value": "18",
                                    "description": "The ID of the sanction."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_id\":13,\"type\":\"repudiandae\",\"reasons\":\"sed\",\"description\":\"Est tenetur rem perspiciatis qui qui beatae nihil.\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Trash",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/sanctions\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/sanctions\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[19]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restore",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/sanctions\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/sanctions\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[10]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Destroy permanently",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/sanctions\/destroy",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/sanctions\/destroy"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[6]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Soins Infirmiers",
            "description": "\nGestion des actes infirmiers MS-Care",
            "item": [
                {
                    "name": "POST api\/nursing-acts\/all",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/nursing-acts\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/nursing-acts\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":61,\"nbre_items\":15,\"filter_value\":\"ebjnsfupfwdwzjsqcb\",\"patient_id\":10,\"nurse_id\":4,\"medical_page_id\":1,\"act_type\":\"ut\",\"external_prescription_ref\":\"facilis\",\"nursing_act_origin\":\"dolor\",\"date_from\":\"2026-05-07\",\"date_to\":\"2026-05-07\",\"trashed\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/nursing-acts",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/nursing-acts",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/nursing-acts"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"patient_id\":5,\"nurse_id\":6,\"medical_page_id\":15,\"nursing_act_catalog_id\":14,\"patient_check_up_id\":16,\"act_name\":\"bekdyxqdyxcuhshdpsflkschb\",\"act_type\":\"magni\",\"reason\":\"voluptas\",\"acts_performed\":\"repudiandae\",\"patient_evolution\":\"et\",\"observations\":\"molestias\",\"incidents\":\"voluptatem\",\"external_prescription_ref\":\"laborum\",\"nursing_act_origin\":\"consequuntur\",\"price\":46,\"date\":\"2026-05-07T16:23:58\",\"hour\":\"16:23\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/nursing-acts\/{nursing_act}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/nursing-acts\/:nursing_act",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/nursing-acts\/:nursing_act",
                            "variable": [
                                {
                                    "id": "nursing_act",
                                    "key": "nursing_act",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/nursing-acts\/1 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/nursing-acts\/{nursing_act}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/nursing-acts\/:nursing_act",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/nursing-acts\/:nursing_act",
                            "variable": [
                                {
                                    "id": "nursing_act",
                                    "key": "nursing_act",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"patient_id\":19,\"nurse_id\":3,\"medical_page_id\":19,\"nursing_act_catalog_id\":10,\"patient_check_up_id\":18,\"act_name\":\"hklyldseegsdzudeqviuprhie\",\"act_type\":\"in\",\"reason\":\"molestias\",\"acts_performed\":\"earum\",\"patient_evolution\":\"ut\",\"observations\":\"impedit\",\"incidents\":\"at\",\"external_prescription_ref\":\"numquam\",\"nursing_act_origin\":\"quas\",\"price\":78,\"date\":\"2026-05-07T16:23:58\",\"hour\":\"16:23\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/nursing-acts\/trash",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/nursing-acts\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/nursing-acts\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[19]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/nursing-acts\/restore",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/nursing-acts\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/nursing-acts\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[13]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "S\u00e9ances de dialyse",
            "description": "\nGestion des s\u00e9ances de dialyse",
            "item": [
                {
                    "name": "Lister les s\u00e9ances de dialyse",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/dialysis-sessions\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/dialysis-sessions\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_items\":76,\"nbre_items\":15,\"filter_value\":\"rhsawippvoxvmgnwz\",\"trashed\":false,\"patient_id\":10,\"doctor_id\":6,\"start_date\":\"2026-05-07\",\"end_date\":\"2080-07-25\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Ajouter une s\u00e9ance de dialyse",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/dialysis-sessions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/dialysis-sessions"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"patient_id\":3,\"doctor_id\":2,\"session_start\":\"repellendus\",\"session_end\":\"eligendi\",\"weight_before\":\"enim\",\"weight_after\":\"et\",\"fluid_removed\":\"molestiae\",\"blood_pressure_post\":\"eum\",\"side_effects\":\"voluptas\",\"description\":\"Repellat est voluptatem assumenda aliquid.\",\"observation\":\"similique\",\"status\":\"pending\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Afficher une s\u00e9ance de dialyse",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/dialysis-sessions\/:dialysis_session",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/dialysis-sessions\/:dialysis_session",
                            "variable": [
                                {
                                    "id": "dialysis_session",
                                    "key": "dialysis_session",
                                    "value": "9",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/dialysis-sessions\/9 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Modifier une s\u00e9ance de dialyse",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/dialysis-sessions\/:dialysis_session",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/dialysis-sessions\/:dialysis_session",
                            "variable": [
                                {
                                    "id": "dialysis_session",
                                    "key": "dialysis_session",
                                    "value": "20",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"patient_id\":17,\"doctor_id\":6,\"session_start\":\"eaque\",\"session_end\":\"modi\",\"blood_pressure_post\":\"velit\",\"side_effects\":\"rem\",\"status\":\"cancelled\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Archiver plusieurs s\u00e9ances de dialyse",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/dialysis-sessions\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/dialysis-sessions\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[10]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Restaurer plusieurs s\u00e9ances de dialyse",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/dialysis-sessions\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/dialysis-sessions\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":[10]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Upload de fichier",
            "description": "\nGestion des uploads de fichiers",
            "item": [
                {
                    "name": "Upload d'un fichier",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/upload-photo",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/upload-photo"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"photo\":\"thjpqdmb\"}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Utilisateurs",
            "description": "\nGestion des utilisateurs",
            "item": [
                {
                    "name": "Fonction qui permet de recuperer la liste des utilisateurs",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users\/all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"role_id\":5,\"page_items\":28,\"nbre_items\":13,\"filter_value\":\"aut\",\"in_order_name\":false,\"start_date\":\"2026-05-07\",\"end_date\":\"2026-05-07\",\"health_center_id\":5,\"department_id\":12,\"coverage_type\":\"partial\",\"marital_status\":\"single\",\"is_patient\":true,\"insurance_name\":\"doloribus\",\"company_name\":\"sit\",\"role_types\":[\"odio\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Fonction qui permet d'ajouter un utilisateur sans passer par la verification",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"username\":\"gcdqlmpdbbak\",\"firstname\":\"ljzsin\",\"lastname\":\"jcgggduzsujskgl\",\"gender\":\"female\",\"birthday\":\"2026-05-07T16:23:58\",\"birth_place\":\"ojssetdy\",\"marital_status\":\"single\",\"nationality\":\"woxexreslkvaij\",\"nui\":\"ymyhrfzxazklud\",\"niss\":\"yzrwxjinipvsasbckmdfllse\",\"email\":\"qgutkowski@example.com\",\"phone\":\"g\",\"phone2\":\"kzlzpykhr\",\"city\":\"byk\",\"address\":\"pgepmtlsvayal\",\"country\":\"mlthgjdqjbpfwaqitxawlsq\",\"password\":\"DAHFF<Nvr\",\"photo\":\"perspiciatis\",\"specialty\":\"deu\",\"license_number\":\"itzpqbkgqggl\",\"years_of_experience\":41,\"work_schedule\":\"ybclooioad\",\"role_id\":3,\"health_center_id\":9,\"department_id\":7,\"mutuality_number\":\"ry\",\"coverage_type\":\"obligatory\",\"guardian_name\":\"fgcptfzdrkyu\",\"guardian_contact\":\"rqbxnmstvrz\",\"guardian_relation\":\"vkhkximufjjj\",\"insurance_name\":\"olndbqbyggahsfkdumac\",\"insurance_number\":\"pljckhoarbzfi\",\"company_name\":\"pucuiquujnyhcjpu\",\"is_patient\":true,\"reference\":\"wdomyzxuhxkcyratslotw\",\"cni\":\"dvpxpojlnbdzwohsbqtyeo\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Cette route permet d'afficher les informations d'un utilisateur",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users\/:user_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users\/:user_id",
                            "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": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"The route api\/users\/1 could not be found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Changer un mot de passe",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users\/update-password\/:user",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users\/update-password\/:user",
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"password\":\"HXXEk6\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Fonction permettant de mettre \u00e0 jour les informations d'un utilisateur",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users\/:user",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users\/:user",
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"firstname\":\"drdsnkgeekhymrovuxyobit\",\"lastname\":\"inyghnyucocgfwcwqprdt\",\"gender\":\"male\",\"birthday\":\"2026-05-07T16:23:58\",\"birth_place\":\"rkufjjxlscbgxgrftlizatz\",\"marital_status\":\"widowed\",\"nationality\":\"unskptjtdltwqiqh\",\"nui\":\"fwhgkcmpjkhyp\",\"niss\":\"ftogojfkolgkx\",\"connexion_type\":\"phone\",\"email\":\"rhiannon02@example.org\",\"phone\":\"xyyanegbtdlwesmcpe\",\"phone2\":\"hcaxdzpiigbx\",\"city\":\"wl\",\"address\":\"hknfznpm\",\"country\":\"kjhonvoqeait\",\"password\":\"Xc&>XH=QUzCTk6-\",\"photo\":\"ut\",\"specialty\":\"vetbbhhqlavggshuj\",\"license_number\":\"etskimjgrqzavsjxkwxcvik\",\"years_of_experience\":6,\"work_schedule\":\"ujtcbcgwgexeibifncfdnxkq\",\"role_id\":12,\"health_center_id\":8,\"department_id\":1,\"mutuality_number\":\"nitjwegsjxsed\",\"coverage_type\":\"partial\",\"guardian_name\":\"ezgseqhgppqvg\",\"guardian_contact\":\"qhfi\",\"guardian_relation\":\"dbggalmjafgjxlj\",\"insurance_name\":\"mcmpwtzjsilkbiyksctwujyo\",\"insurance_number\":\"apuepxp\",\"company_name\":\"bmelkjsyqkaxwqcixqszfqqr\",\"is_patient\":true,\"reference\":\"s\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Fonction pour le multiple archivage des utilisateurs",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users\/trash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users\/trash"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_ids\":[8]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Fonction de restauration multiples d'utilisateurs",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users\/restore"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_ids\":[20]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Fonction de suppression d\u00e9finitive multiple d'utilisateurs",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users\/destroy",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users\/destroy"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_ids\":[5]}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "key",
                "type": "string"
            }
        ]
    }
}