{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "https:\/\/e-justice-api.kodinet.cd"
        }
    ],
    "info": {
        "name": "E-JUSTICE API Documentation",
        "_postman_id": "0945138d-02d0-43cb-8c14-68932d732be4",
        "description": "API de la plateforme nationale E-JUSTICE (RDC) : demande de documents officiels, paiement \u00e9lectronique et suivi des demandes.",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "Auth",
            "description": "Inscription, connexion et gestion du mot de passe.",
            "item": [
                {
                    "name": "Register",
                    "description": "Inscription du citoyen et v\u00e9rification du compte par code OTP.",
                    "item": [
                        {
                            "name": "Inscrire un citoyen",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/auth\/register",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/auth\/register"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"b\",\"country_code\":\"n\",\"phone_number\":\"gzmiyvdljnikhway\",\"email\":\"gilbert32@example.com\",\"password\":\"Motdepasse1\",\"password_confirmation\":\"Motdepasse1\"}"
                                },
                                "description": "",
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "V\u00e9rifier le compte avec le code OTP",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/auth\/verify",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/auth\/verify"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"identifier\":\"b\",\"code\":\"ngzmiy\"}"
                                },
                                "description": "",
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Renvoyer le code de v\u00e9rification",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/auth\/resend",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/auth\/resend"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"identifier\":\"b\"}"
                                },
                                "description": "",
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Login",
                    "description": "Connexion et d\u00e9connexion.",
                    "item": [
                        {
                            "name": "Se connecter",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/auth\/login",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/auth\/login"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"identifier\":\"b\",\"password\":\"|]|{+-\",\"device_name\":\"v\"}"
                                },
                                "description": "",
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Se d\u00e9connecter",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/auth\/logout",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/auth\/logout"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Password Reset",
                    "description": "R\u00e9initialisation du mot de passe par code OTP.",
                    "item": [
                        {
                            "name": "Demander un code de r\u00e9initialisation",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/auth\/password\/forgot",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/auth\/password\/forgot"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"identifier\":\"b\"}"
                                },
                                "description": "",
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "R\u00e9initialiser le mot de passe",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/auth\/password\/reset",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/auth\/password\/reset"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"identifier\":\"b\",\"code\":\"ngzmiy\",\"password\":\"Motdepasse1\",\"password_confirmation\":\"Motdepasse1\"}"
                                },
                                "description": "",
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Password",
                    "description": "Changement du mot de passe (utilisateur connect\u00e9).",
                    "item": [
                        {
                            "name": "Changer le mot de passe",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/auth\/password\/change",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/auth\/password\/change"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"current_password\":\"architecto\",\"password\":\"Motdepasse1\",\"password_confirmation\":\"Motdepasse1\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                }
            ]
        },
        {
            "name": "Account",
            "description": "Compte et profil de l'utilisateur connect\u00e9.",
            "item": [
                {
                    "name": "User",
                    "description": "",
                    "item": [
                        {
                            "name": "Profil de l'utilisateur connect\u00e9",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/user",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/user"
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [
                                        {
                                            "key": "cache-control",
                                            "value": "no-cache, private"
                                        },
                                        {
                                            "key": "content-type",
                                            "value": "application\/json"
                                        },
                                        {
                                            "key": "access-control-allow-origin",
                                            "value": "*"
                                        }
                                    ],
                                    "code": 401,
                                    "body": "{\"message\":\"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Supprimer son compte (mot de passe requis)",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/account",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/account"
                                },
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"password\":\"Motdepasse1\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Citizen",
                    "description": "Profil civil : identit\u00e9, origine et adresse (RDC).",
                    "item": [
                        {
                            "name": "Consulter mon profil citoyen",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/citizen",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/citizen"
                                },
                                "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": 401,
                                    "body": "{\"message\":\"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Cr\u00e9er ou mettre \u00e0 jour mon profil citoyen",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/citizen",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/citizen"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "multipart\/form-data"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "last_name",
                                            "value": "b",
                                            "type": "text",
                                            "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                        },
                                        {
                                            "key": "post_name",
                                            "value": "n",
                                            "type": "text",
                                            "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                        },
                                        {
                                            "key": "first_name",
                                            "value": "g",
                                            "type": "text",
                                            "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                        },
                                        {
                                            "key": "birth_date",
                                            "value": "2022-09-13",
                                            "type": "text",
                                            "description": "Le champ value n'est pas une date valide. Le champ value doit \u00eatre une date ant\u00e9rieure au <code>today<\/code>."
                                        },
                                        {
                                            "key": "birth_place",
                                            "value": "n",
                                            "type": "text",
                                            "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                        },
                                        {
                                            "key": "father_name",
                                            "value": "Mwamba Faraja Adolphe",
                                            "type": "text",
                                            "description": "Nom complet du p\u00e8re. Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                        },
                                        {
                                            "key": "father_nationality",
                                            "value": "Congolaise",
                                            "type": "text",
                                            "description": "Nationalit\u00e9 du p\u00e8re. Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                        },
                                        {
                                            "key": "mother_name",
                                            "value": "Albertine Amani Emilie",
                                            "type": "text",
                                            "description": "Nom complet de la m\u00e8re. Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                        },
                                        {
                                            "key": "mother_nationality",
                                            "value": "Congolaise",
                                            "type": "text",
                                            "description": "Nationalit\u00e9 de la m\u00e8re. Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                        },
                                        {
                                            "key": "tribe",
                                            "value": "Luba",
                                            "type": "text",
                                            "description": "Tribu d\u2019origine du requ\u00e9rant. Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                        },
                                        {
                                            "key": "gender",
                                            "value": "female",
                                            "type": "text",
                                            "description": ""
                                        },
                                        {
                                            "key": "marital_status",
                                            "value": "married",
                                            "type": "text",
                                            "description": ""
                                        },
                                        {
                                            "key": "nationality",
                                            "value": "g",
                                            "type": "text",
                                            "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                        },
                                        {
                                            "key": "profession",
                                            "value": "z",
                                            "type": "text",
                                            "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                        },
                                        {
                                            "key": "national_id",
                                            "value": "01-90-06-15-12345-67",
                                            "type": "text",
                                            "description": "Num\u00e9ro national d\u2019identit\u00e9 de la personne (identifiant national). Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                        },
                                        {
                                            "key": "identity_document_type",
                                            "value": "Carte d\u2019\u00e9lecteur",
                                            "type": "text",
                                            "description": "Type de pi\u00e8ce d\u2019identit\u00e9 pr\u00e9sent\u00e9e (carte d\u2019\u00e9lecteur, passeport, permis de conduire\u2026). Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                        },
                                        {
                                            "key": "identity_document_number",
                                            "value": "CD-2020-0123456",
                                            "type": "text",
                                            "description": "Num\u00e9ro de la pi\u00e8ce d\u2019identit\u00e9 pr\u00e9sent\u00e9e. Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                        },
                                        {
                                            "key": "province_origin_id",
                                            "value": "architecto",
                                            "type": "text",
                                            "description": "Must match an existing stored value."
                                        },
                                        {
                                            "key": "territory_origin_id",
                                            "value": "architecto",
                                            "type": "text",
                                            "description": "Must match an existing stored value."
                                        },
                                        {
                                            "key": "village_origin",
                                            "value": "n",
                                            "type": "text",
                                            "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                        },
                                        {
                                            "key": "chiefdom_origin",
                                            "value": "g",
                                            "type": "text",
                                            "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                        },
                                        {
                                            "key": "collectivity_origin",
                                            "value": "z",
                                            "type": "text",
                                            "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                        },
                                        {
                                            "key": "groupement_origin",
                                            "value": "m",
                                            "type": "text",
                                            "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                        },
                                        {
                                            "key": "city_address",
                                            "value": "i",
                                            "type": "text",
                                            "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                        },
                                        {
                                            "key": "municipality_address",
                                            "value": "y",
                                            "type": "text",
                                            "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                        },
                                        {
                                            "key": "quarter_address",
                                            "value": "v",
                                            "type": "text",
                                            "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                        },
                                        {
                                            "key": "avenue_address",
                                            "value": "d",
                                            "type": "text",
                                            "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                        },
                                        {
                                            "key": "house_number",
                                            "value": "l",
                                            "type": "text",
                                            "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                        },
                                        {
                                            "key": "photo",
                                            "src": [],
                                            "type": "file"
                                        },
                                        {
                                            "key": "_method",
                                            "value": "PUT",
                                            "type": "text"
                                        }
                                    ]
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Mettre \u00e0 jour ma photo de profil",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/citizen\/photo",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/citizen\/photo"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "multipart\/form-data"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "photo",
                                            "src": [],
                                            "type": "file"
                                        }
                                    ]
                                },
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                }
            ]
        },
        {
            "name": "Localisation",
            "description": "R\u00e9f\u00e9rentiel g\u00e9ographique RDC : consultation (tous) et administration (admin).",
            "item": [
                {
                    "name": "Countries",
                    "description": "",
                    "item": [
                        {
                            "name": "Lister les pays",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/countries",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/countries"
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [
                                        {
                                            "key": "cache-control",
                                            "value": "no-cache, private"
                                        },
                                        {
                                            "key": "content-type",
                                            "value": "application\/json"
                                        },
                                        {
                                            "key": "access-control-allow-origin",
                                            "value": "*"
                                        }
                                    ],
                                    "code": 401,
                                    "body": "{\"message\":\"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Cr\u00e9er Pays",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/countries",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/countries"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"b\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Afficher Pays",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/countries\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/countries\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the country."
                                        }
                                    ]
                                },
                                "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\/v1\/countries\/architecto could not be found.\"\n}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Mettre \u00e0 jour Pays",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/countries\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/countries\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the country."
                                        }
                                    ]
                                },
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"b\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Supprimer Pays",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/countries\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/countries\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the country."
                                        }
                                    ]
                                },
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Provinces",
                    "description": "",
                    "item": [
                        {
                            "name": "Lister les provinces",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/provinces",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/provinces"
                                },
                                "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": 401,
                                    "body": "{\"message\":\"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Cr\u00e9er Province",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/provinces",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/provinces"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"b\",\"postal_code\":\"n\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Afficher Province",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/provinces\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/provinces\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the province."
                                        }
                                    ]
                                },
                                "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\/v1\/provinces\/architecto could not be found.\"\n}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Mettre \u00e0 jour Province",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/provinces\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/provinces\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the province."
                                        }
                                    ]
                                },
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"b\",\"postal_code\":\"n\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Supprimer Province",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/provinces\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/provinces\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the province."
                                        }
                                    ]
                                },
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Territories",
                    "description": "",
                    "item": [
                        {
                            "name": "Lister les territoires",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/territories",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/territories"
                                },
                                "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": 401,
                                    "body": "{\"message\":\"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Cr\u00e9er Territoire",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/territories",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/territories"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"b\",\"postal_code\":\"n\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Afficher Territoire",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/territories\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/territories\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the territory."
                                        }
                                    ]
                                },
                                "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\/v1\/territories\/architecto could not be found.\"\n}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Mettre \u00e0 jour Territoire",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/territories\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/territories\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the territory."
                                        }
                                    ]
                                },
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"b\",\"postal_code\":\"n\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Supprimer Territoire",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/territories\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/territories\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the territory."
                                        }
                                    ]
                                },
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Chiefdoms",
                    "description": "",
                    "item": [
                        {
                            "name": "Lister les chefferies",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/chiefdoms",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/chiefdoms"
                                },
                                "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": 401,
                                    "body": "{\"message\":\"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Cr\u00e9er Chefferie",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/chiefdoms",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/chiefdoms"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"b\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Afficher Chefferie",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/chiefdoms\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/chiefdoms\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the chiefdom."
                                        }
                                    ]
                                },
                                "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\/v1\/chiefdoms\/architecto could not be found.\"\n}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Mettre \u00e0 jour Chefferie",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/chiefdoms\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/chiefdoms\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the chiefdom."
                                        }
                                    ]
                                },
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"b\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Supprimer Chefferie",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/chiefdoms\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/chiefdoms\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the chiefdom."
                                        }
                                    ]
                                },
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Collectivities",
                    "description": "",
                    "item": [
                        {
                            "name": "Lister les collectivit\u00e9s",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/collectivities",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/collectivities"
                                },
                                "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": 401,
                                    "body": "{\"message\":\"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Cr\u00e9er Collectivit\u00e9",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/collectivities",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/collectivities"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"b\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Afficher Collectivit\u00e9",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/collectivities\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/collectivities\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the collectivity."
                                        }
                                    ]
                                },
                                "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\/v1\/collectivities\/architecto could not be found.\"\n}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Mettre \u00e0 jour Collectivit\u00e9",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/collectivities\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/collectivities\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the collectivity."
                                        }
                                    ]
                                },
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"b\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Supprimer Collectivit\u00e9",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/collectivities\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/collectivities\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the collectivity."
                                        }
                                    ]
                                },
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Groupements",
                    "description": "",
                    "item": [
                        {
                            "name": "Lister les groupements",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/groupements",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/groupements"
                                },
                                "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": 401,
                                    "body": "{\"message\":\"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Cr\u00e9er Groupement",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/groupements",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/groupements"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"b\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Afficher Groupement",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/groupements\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/groupements\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the groupement."
                                        }
                                    ]
                                },
                                "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\/v1\/groupements\/architecto could not be found.\"\n}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Mettre \u00e0 jour Groupement",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/groupements\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/groupements\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the groupement."
                                        }
                                    ]
                                },
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"b\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Supprimer Groupement",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/groupements\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/groupements\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the groupement."
                                        }
                                    ]
                                },
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Villages",
                    "description": "",
                    "item": [
                        {
                            "name": "Lister les villages",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/villages",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/villages"
                                },
                                "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": 401,
                                    "body": "{\"message\":\"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Cr\u00e9er Village",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/villages",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/villages"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"b\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Afficher Village",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/villages\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/villages\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the village."
                                        }
                                    ]
                                },
                                "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\/v1\/villages\/architecto could not be found.\"\n}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Mettre \u00e0 jour Village",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/villages\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/villages\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the village."
                                        }
                                    ]
                                },
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"b\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Supprimer Village",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/villages\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/villages\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the village."
                                        }
                                    ]
                                },
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Cities",
                    "description": "",
                    "item": [
                        {
                            "name": "Lister les villes",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/cities",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/cities"
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [
                                        {
                                            "key": "cache-control",
                                            "value": "no-cache, private"
                                        },
                                        {
                                            "key": "content-type",
                                            "value": "application\/json"
                                        },
                                        {
                                            "key": "access-control-allow-origin",
                                            "value": "*"
                                        }
                                    ],
                                    "code": 401,
                                    "body": "{\"message\":\"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Cr\u00e9er Ville",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/cities",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/cities"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"b\",\"postal_code\":\"n\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Afficher Ville",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/cities\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/cities\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the city."
                                        }
                                    ]
                                },
                                "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\/v1\/cities\/architecto could not be found.\"\n}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Mettre \u00e0 jour Ville",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/cities\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/cities\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the city."
                                        }
                                    ]
                                },
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"b\",\"postal_code\":\"n\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Supprimer Ville",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/cities\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/cities\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the city."
                                        }
                                    ]
                                },
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Municipalities",
                    "description": "",
                    "item": [
                        {
                            "name": "Lister les communes",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/municipalities",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/municipalities"
                                },
                                "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": 401,
                                    "body": "{\"message\":\"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Cr\u00e9er Commune",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/municipalities",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/municipalities"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"b\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Afficher Commune",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/municipalities\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/municipalities\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the municipality."
                                        }
                                    ]
                                },
                                "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\/v1\/municipalities\/architecto could not be found.\"\n}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Mettre \u00e0 jour Commune",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/municipalities\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/municipalities\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the municipality."
                                        }
                                    ]
                                },
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"b\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Supprimer Commune",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/municipalities\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/municipalities\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the municipality."
                                        }
                                    ]
                                },
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Quarters",
                    "description": "",
                    "item": [
                        {
                            "name": "Lister les quartiers",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/quarters",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/quarters"
                                },
                                "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": 401,
                                    "body": "{\"message\":\"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Cr\u00e9er Quartier",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/quarters",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/quarters"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"b\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Afficher Quartier",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/quarters\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/quarters\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the quarter."
                                        }
                                    ]
                                },
                                "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\/v1\/quarters\/architecto could not be found.\"\n}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Mettre \u00e0 jour Quartier",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/quarters\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/quarters\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the quarter."
                                        }
                                    ]
                                },
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"b\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Supprimer Quartier",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/quarters\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/quarters\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the quarter."
                                        }
                                    ]
                                },
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Avenues",
                    "description": "",
                    "item": [
                        {
                            "name": "Lister les avenues",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/avenues",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/avenues"
                                },
                                "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": 401,
                                    "body": "{\"message\":\"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Cr\u00e9er Avenue",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/avenues",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/avenues"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"b\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Afficher Avenue",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/avenues\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/avenues\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the avenue."
                                        }
                                    ]
                                },
                                "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\/v1\/avenues\/architecto could not be found.\"\n}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Mettre \u00e0 jour Avenue",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/avenues\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/avenues\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the avenue."
                                        }
                                    ]
                                },
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"b\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Supprimer Avenue",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/avenues\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/avenues\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "The ID of the avenue."
                                        }
                                    ]
                                },
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                }
            ]
        },
        {
            "name": "Documents",
            "description": "Catalogue des documents officiels et de leurs pi\u00e8ces requises.",
            "item": [
                {
                    "name": "Lister le catalogue",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/document-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/document-types"
                        },
                        "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "D\u00e9tails d'un type de document",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/document-types\/:documentType_key",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/document-types\/:documentType_key",
                            "variable": [
                                {
                                    "id": "documentType_key",
                                    "key": "documentType_key",
                                    "value": "attestation_of_non_nationality",
                                    "description": ""
                                },
                                {
                                    "id": "documentType",
                                    "key": "documentType",
                                    "value": "certificate_of_nationality",
                                    "description": "Cl\u00e9 du type de document."
                                }
                            ]
                        },
                        "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Applications",
            "description": "Ouverture, suivi et soumission des demandes du citoyen.",
            "item": [
                {
                    "name": "Lister les demandes (filtrable, pagin\u00e9e)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/applications",
                            "query": [
                                {
                                    "key": "filter[status]",
                                    "value": "under_review",
                                    "description": "Filtrer par statut.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[current_stage]",
                                    "value": "anr",
                                    "description": "Filtrer par \u00e9tape courante.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[document_type]",
                                    "value": "certificate_of_nationality",
                                    "description": "Filtrer par cl\u00e9 de type de document.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[reference]",
                                    "value": "EJ-CN-2026",
                                    "description": "Filtrer par r\u00e9f\u00e9rence (partiel).",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[applicant]",
                                    "value": "Yannick",
                                    "description": "Filtrer par nom\/pr\u00e9nom du requ\u00e9rant.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "-created_at",
                                    "description": "Tri : created_at, submitted_at, status, current_stage (pr\u00e9fixe - pour desc).",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "20",
                                    "description": "Nombre par page (1-100).",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Num\u00e9ro de page.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/applications?filter%5Bstatus%5D=under_review&filter%5Bcurrent_stage%5D=anr&filter%5Bdocument_type%5D=certificate_of_nationality&filter%5Breference%5D=EJ-CN-2026&filter%5Bapplicant%5D=Yannick&sort=-created_at&per_page=20&page=1",
                            "variable": [
                                {
                                    "id": "application",
                                    "key": "application",
                                    "value": "EJ-CN-2026-00000001",
                                    "description": "R\u00e9f\u00e9rence de la demande."
                                }
                            ]
                        },
                        "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Ouvrir une demande (brouillon)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/applications",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/applications",
                            "variable": [
                                {
                                    "id": "application",
                                    "key": "application",
                                    "value": "EJ-CN-2026-00000001",
                                    "description": "R\u00e9f\u00e9rence de la demande."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"document_type_key\":\"deed_deposit_certificate\",\"reason\":\"Obtention d\u2019un passeport\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "D\u00e9tail et suivi d'une demande",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/applications\/:application_reference",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/applications\/:application_reference",
                            "variable": [
                                {
                                    "id": "application_reference",
                                    "key": "application_reference",
                                    "value": "EJ-AN-2026-00000001",
                                    "description": ""
                                },
                                {
                                    "id": "application",
                                    "key": "application",
                                    "value": "EJ-CN-2026-00000001",
                                    "description": "R\u00e9f\u00e9rence de la demande."
                                }
                            ]
                        },
                        "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Attachments",
                    "description": "T\u00e9l\u00e9versement des pi\u00e8ces justificatives.",
                    "item": [
                        {
                            "name": "Joindre une pi\u00e8ce justificative",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/applications\/:application_reference\/attachments",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/applications\/:application_reference\/attachments",
                                    "variable": [
                                        {
                                            "id": "application_reference",
                                            "key": "application_reference",
                                            "value": "EJ-AN-2026-00000001",
                                            "description": ""
                                        },
                                        {
                                            "id": "application",
                                            "key": "application",
                                            "value": "EJ-CN-2026-00000001",
                                            "description": "R\u00e9f\u00e9rence de la demande."
                                        }
                                    ]
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "multipart\/form-data"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "attachment_type",
                                            "value": "parents_id",
                                            "type": "text",
                                            "description": ""
                                        },
                                        {
                                            "key": "file",
                                            "src": [],
                                            "type": "file"
                                        }
                                    ]
                                },
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Soumettre la demande",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/applications\/:application_reference\/submit",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/applications\/:application_reference\/submit",
                            "variable": [
                                {
                                    "id": "application_reference",
                                    "key": "application_reference",
                                    "value": "EJ-AN-2026-00000001",
                                    "description": ""
                                },
                                {
                                    "id": "application",
                                    "key": "application",
                                    "value": "EJ-CN-2026-00000001",
                                    "description": "R\u00e9f\u00e9rence de la demande."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Resoumettre la demande apr\u00e8s compl\u00e9ment",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/applications\/:application_reference\/resubmit",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/applications\/:application_reference\/resubmit",
                            "variable": [
                                {
                                    "id": "application_reference",
                                    "key": "application_reference",
                                    "value": "EJ-AN-2026-00000001",
                                    "description": ""
                                },
                                {
                                    "id": "application",
                                    "key": "application",
                                    "value": "EJ-CN-2026-00000001",
                                    "description": "R\u00e9f\u00e9rence de la demande."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"observation\":\"Acte de naissance rescann\u00e9 en couleur.\"}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Workflow",
            "description": "Traitement institutionnel des demandes par les organismes.",
            "item": [
                {
                    "name": "Inbox",
                    "description": "Demandes en attente de traitement pour l'organisme courant.",
                    "item": [
                        {
                            "name": "Lister les demandes \u00e0 traiter",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/workflow\/inbox",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/workflow\/inbox"
                                },
                                "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": 401,
                                    "body": "{\"message\":\"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "Transitions",
                    "description": "Avancement, rejet et demande de compl\u00e9ment selon l'\u00e9tape courante.",
                    "item": [
                        {
                            "name": "Transitionner une demande",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/applications\/:application_reference\/transitions",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/applications\/:application_reference\/transitions",
                                    "variable": [
                                        {
                                            "id": "application_reference",
                                            "key": "application_reference",
                                            "value": "EJ-AN-2026-00000001",
                                            "description": ""
                                        },
                                        {
                                            "id": "application",
                                            "key": "application",
                                            "value": "EJ-CN-2026-00000001",
                                            "description": "R\u00e9f\u00e9rence de la demande."
                                        }
                                    ]
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"action\":\"resubmit\",\"observation\":\"b\",\"destination\":\"dgm\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                }
            ]
        },
        {
            "name": "Payments",
            "description": "Paiement des frais du document via KODIPAY.",
            "item": [
                {
                    "name": "Paiement",
                    "description": "Initiation et suivi des paiements du citoyen.",
                    "item": [
                        {
                            "name": "Lister les paiements du dossier",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/applications\/:application_reference\/payments",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/applications\/:application_reference\/payments",
                                    "variable": [
                                        {
                                            "id": "application_reference",
                                            "key": "application_reference",
                                            "value": "EJ-AN-2026-00000001",
                                            "description": ""
                                        },
                                        {
                                            "id": "application",
                                            "key": "application",
                                            "value": "EJ-CN-2026-00000001",
                                            "description": "R\u00e9f\u00e9rence de la demande."
                                        }
                                    ]
                                },
                                "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": 401,
                                    "body": "{\"message\":\"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Savoir si le dossier est d\u00e9j\u00e0 pay\u00e9",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/applications\/:application_reference\/payment-status",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/applications\/:application_reference\/payment-status",
                                    "variable": [
                                        {
                                            "id": "application_reference",
                                            "key": "application_reference",
                                            "value": "EJ-AN-2026-00000001",
                                            "description": ""
                                        },
                                        {
                                            "id": "application",
                                            "key": "application",
                                            "value": "EJ-CN-2026-00000001",
                                            "description": "R\u00e9f\u00e9rence de la demande."
                                        }
                                    ]
                                },
                                "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": 401,
                                    "body": "{\"message\":\"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Initier le paiement des frais",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/applications\/:application_reference\/payments",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/applications\/:application_reference\/payments",
                                    "variable": [
                                        {
                                            "id": "application_reference",
                                            "key": "application_reference",
                                            "value": "EJ-AN-2026-00000001",
                                            "description": ""
                                        },
                                        {
                                            "id": "application",
                                            "key": "application",
                                            "value": "EJ-CN-2026-00000001",
                                            "description": "R\u00e9f\u00e9rence de la demande."
                                        }
                                    ]
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"payment_method\":\"card\",\"wallet_id\":\"b\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Callback",
                    "description": "Webhook KODIPAY : notifications d'\u00e9tat de paiement.",
                    "item": [
                        {
                            "name": "Notification de paiement (webhook KODIPAY)",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/payments\/callback",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/payments\/callback"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"reference\":\"architecto\"}"
                                },
                                "description": "",
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "response": []
                        }
                    ]
                }
            ]
        },
        {
            "name": "Signature",
            "description": "Signature \u00e9lectronique du certificat par l'autorit\u00e9 (signNow).",
            "item": [
                {
                    "name": "Callback",
                    "description": "Webhook signNow : notification de signature termin\u00e9e.",
                    "item": [
                        {
                            "name": "Notification de signature (webhook signNow)",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/signatures\/callback",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/signatures\/callback"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": "",
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Initier la signature du certificat",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/applications\/:application_reference\/signature",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/applications\/:application_reference\/signature",
                            "variable": [
                                {
                                    "id": "application_reference",
                                    "key": "application_reference",
                                    "value": "EJ-AN-2026-00000001",
                                    "description": ""
                                },
                                {
                                    "id": "application",
                                    "key": "application",
                                    "value": "EJ-CN-2026-00000001",
                                    "description": "R\u00e9f\u00e9rence de la demande."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"issue_place\":\"b\"}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Certificates",
            "description": "R\u00e9cup\u00e9ration du certificat sign\u00e9 par le citoyen.",
            "item": [
                {
                    "name": "Obtenir un lien de t\u00e9l\u00e9chargement du certificat sign\u00e9 (Cellule Nationale \/ Admin)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/certificates\/:certificate_number\/download",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/certificates\/:certificate_number\/download",
                            "variable": [
                                {
                                    "id": "certificate_number",
                                    "key": "certificate_number",
                                    "value": 10,
                                    "description": ""
                                },
                                {
                                    "id": "certificate",
                                    "key": "certificate",
                                    "value": "CN-RDC-2026-0000000001",
                                    "description": "Num\u00e9ro unique du certificat."
                                }
                            ]
                        },
                        "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Servir le PDF sign\u00e9 (lien temporaire sign\u00e9)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/certificates\/:certificate_number\/file",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/certificates\/:certificate_number\/file",
                            "variable": [
                                {
                                    "id": "certificate_number",
                                    "key": "certificate_number",
                                    "value": 10,
                                    "description": ""
                                },
                                {
                                    "id": "certificate",
                                    "key": "certificate",
                                    "value": "CN-RDC-2026-0000000001",
                                    "description": "Num\u00e9ro unique du certificat."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"errors\":\"Certificate not found\",\"status\":404}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Verification",
            "description": "V\u00e9rification publique de l'authenticit\u00e9 d'un certificat (QR).",
            "item": [
                {
                    "name": "V\u00e9rifier un certificat",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/verify\/:number",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/verify\/:number",
                            "variable": [
                                {
                                    "id": "number",
                                    "key": "number",
                                    "value": "CN-RDC-2026-0000000001",
                                    "description": "Num\u00e9ro du certificat."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 403,
                            "body": "{\"valid\":false,\"message\":\"Lien de v\\u00e9rification invalide.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "V\u00e9rifier une personnalit\u00e9 juridique",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/verify\/legal-entity\/:number",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/verify\/legal-entity\/:number",
                            "variable": [
                                {
                                    "id": "number",
                                    "key": "number",
                                    "value": "PJ-RDC-2026-000154",
                                    "description": "Num\u00e9ro de personnalit\u00e9 juridique."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"valid\":false,\"message\":\"Personnalit\\u00e9 juridique introuvable.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Administration",
            "description": "Actions des agents au guichet, pour le compte des citoyens.",
            "item": [
                {
                    "name": "Enregistrer un citoyen sans compte (guichet)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/citizens",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/citizens"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "last_name",
                                    "value": "b",
                                    "type": "text",
                                    "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "post_name",
                                    "value": "n",
                                    "type": "text",
                                    "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "first_name",
                                    "value": "g",
                                    "type": "text",
                                    "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "birth_date",
                                    "value": "2022-09-13",
                                    "type": "text",
                                    "description": "Le champ value n'est pas une date valide. Le champ value doit \u00eatre une date ant\u00e9rieure au <code>today<\/code>."
                                },
                                {
                                    "key": "birth_place",
                                    "value": "n",
                                    "type": "text",
                                    "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "father_name",
                                    "value": "Mwamba Faraja Adolphe",
                                    "type": "text",
                                    "description": "Nom complet du p\u00e8re. Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "father_nationality",
                                    "value": "Congolaise",
                                    "type": "text",
                                    "description": "Nationalit\u00e9 du p\u00e8re. Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "mother_name",
                                    "value": "Albertine Amani Emilie",
                                    "type": "text",
                                    "description": "Nom complet de la m\u00e8re. Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "mother_nationality",
                                    "value": "Congolaise",
                                    "type": "text",
                                    "description": "Nationalit\u00e9 de la m\u00e8re. Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "tribe",
                                    "value": "Luba",
                                    "type": "text",
                                    "description": "Tribu d\u2019origine du requ\u00e9rant. Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "gender",
                                    "value": "male",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "marital_status",
                                    "value": "married",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "nationality",
                                    "value": "g",
                                    "type": "text",
                                    "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "profession",
                                    "value": "z",
                                    "type": "text",
                                    "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "national_id",
                                    "value": "01-90-06-15-12345-67",
                                    "type": "text",
                                    "description": "Num\u00e9ro national d\u2019identit\u00e9 de la personne (identifiant national). Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "identity_document_type",
                                    "value": "Carte d\u2019\u00e9lecteur",
                                    "type": "text",
                                    "description": "Type de pi\u00e8ce d\u2019identit\u00e9 pr\u00e9sent\u00e9e (carte d\u2019\u00e9lecteur, passeport, permis de conduire\u2026). Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "identity_document_number",
                                    "value": "CD-2020-0123456",
                                    "type": "text",
                                    "description": "Num\u00e9ro de la pi\u00e8ce d\u2019identit\u00e9 pr\u00e9sent\u00e9e. Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "province_origin_id",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": "Must match an existing stored value."
                                },
                                {
                                    "key": "territory_origin_id",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": "Must match an existing stored value."
                                },
                                {
                                    "key": "village_origin",
                                    "value": "n",
                                    "type": "text",
                                    "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "chiefdom_origin",
                                    "value": "g",
                                    "type": "text",
                                    "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "collectivity_origin",
                                    "value": "z",
                                    "type": "text",
                                    "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "groupement_origin",
                                    "value": "m",
                                    "type": "text",
                                    "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "city_address",
                                    "value": "i",
                                    "type": "text",
                                    "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "municipality_address",
                                    "value": "y",
                                    "type": "text",
                                    "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "quarter_address",
                                    "value": "v",
                                    "type": "text",
                                    "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "avenue_address",
                                    "value": "d",
                                    "type": "text",
                                    "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "house_number",
                                    "value": "l",
                                    "type": "text",
                                    "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "contact_country_code",
                                    "value": "jnikhway",
                                    "type": "text",
                                    "description": "This field is required when <code>contact_phone<\/code> is present. Le texte de value ne peut pas contenir plus de 8 caract\u00e8res."
                                },
                                {
                                    "key": "contact_phone",
                                    "value": "kcmyuwpwlvqwrsit",
                                    "type": "text",
                                    "description": "Le texte de value ne peut pas contenir plus de 20 caract\u00e8res."
                                },
                                {
                                    "key": "photo",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Consulter un citoyen",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/citizens\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/citizens\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": 9,
                                    "description": "The ID of the citizen."
                                }
                            ]
                        },
                        "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Mettre \u00e0 jour la photo d'un citoyen (guichet)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/citizens\/:citizen_id\/photo",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/citizens\/:citizen_id\/photo",
                            "variable": [
                                {
                                    "id": "citizen_id",
                                    "key": "citizen_id",
                                    "value": 9,
                                    "description": "The ID of the citizen."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "photo",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Rattacher un compte \u00e0 un citoyen (claim)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/citizens\/:citizen_id\/link",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/citizens\/:citizen_id\/link",
                            "variable": [
                                {
                                    "id": "citizen_id",
                                    "key": "citizen_id",
                                    "value": 9,
                                    "description": "The ID of the citizen."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"identifier\":\"architecto\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Ouvrir une demande pour le compte d'un citoyen",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/citizens\/:citizen_id\/applications",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/citizens\/:citizen_id\/applications",
                            "variable": [
                                {
                                    "id": "citizen_id",
                                    "key": "citizen_id",
                                    "value": 9,
                                    "description": "The ID of the citizen."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"document_type_key\":\"criminal_record\",\"reason\":\"Obtention d\u2019un passeport\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Rechercher une personne physique au r\u00e9f\u00e9rentiel",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/persons",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/persons"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"q\":\"b\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Dashboard",
            "description": "Statistiques agr\u00e9g\u00e9es du tableau de bord administratif.",
            "item": [
                {
                    "name": "Vue d'ensemble du tableau de bord",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard",
                            "query": [
                                {
                                    "key": "period",
                                    "value": "month",
                                    "description": "P\u00e9riode : today|week|month|year|custom.",
                                    "disabled": false
                                },
                                {
                                    "key": "from",
                                    "value": "2026-06-01",
                                    "description": "D\u00e9but de la plage (requis si period=custom).",
                                    "disabled": false
                                },
                                {
                                    "key": "to",
                                    "value": "2026-06-30",
                                    "description": "Fin de la plage (requis si period=custom).",
                                    "disabled": false
                                },
                                {
                                    "key": "province",
                                    "value": "Kinshasa",
                                    "description": "Filtre sur la province d'origine.",
                                    "disabled": false
                                },
                                {
                                    "key": "document_type",
                                    "value": "certificate_of_nationality",
                                    "description": "Cl\u00e9 du type de document.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard?period=month&from=2026-06-01&to=2026-06-30&province=Kinshasa&document_type=certificate_of_nationality"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"period\":\"custom\",\"from\":\"2022-09-13\",\"to\":\"2026-08-20T03:25:00\",\"province\":\"n\",\"document_type\":\"architecto\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Encaissement guichet",
            "description": "R\u00e8glement des frais en esp\u00e8ces au comptoir.",
            "item": [
                {
                    "name": "Lister les paiements en esp\u00e8ces en attente",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/cash-payments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/cash-payments"
                        },
                        "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Encaisser un paiement en esp\u00e8ces (guichet)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/cash-payments\/:payment_reference\/process",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/cash-payments\/:payment_reference\/process",
                            "variable": [
                                {
                                    "id": "payment_reference",
                                    "key": "payment_reference",
                                    "value": "PAY-EJ-AN-2026-00000002-04",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"counter\":\"b\"}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Endpoints",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/applications\/initTable",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/applications\/initTable",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/applications\/initTable"
                        },
                        "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/applications\/tableData",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/applications\/tableData",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/applications\/tableData"
                        },
                        "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/payments\/initTable",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/initTable",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/initTable"
                        },
                        "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/payments\/tableData",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/tableData",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/tableData"
                        },
                        "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/certificates\/initTable",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/certificates\/initTable",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/certificates\/initTable"
                        },
                        "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/certificates\/tableData",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/certificates\/tableData",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/certificates\/tableData"
                        },
                        "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/citizens\/initTable",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/citizens\/initTable",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/citizens\/initTable"
                        },
                        "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/citizens\/tableData",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/citizens\/tableData",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/citizens\/tableData"
                        },
                        "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/users\/initTable",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/users\/initTable",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/users\/initTable"
                        },
                        "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/users\/tableData",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/users\/tableData",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/users\/tableData"
                        },
                        "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/admin\/legal-entities\/initTable",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-entities\/initTable",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-entities\/initTable"
                        },
                        "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/admin\/legal-entities\/tableData",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-entities\/tableData",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-entities\/tableData"
                        },
                        "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Personnes morales",
            "description": "Gestion des fiches d'identification des personnes morales.",
            "item": [
                {
                    "name": "Corbeille des fiches personne morale \u00e0 traiter",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-entities\/inbox",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-entities\/inbox"
                        },
                        "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Soumettre la fiche dans le circuit de traitement",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-entities\/:legalEntity_reference\/submit",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-entities\/:legalEntity_reference\/submit",
                            "variable": [
                                {
                                    "id": "legalEntity_reference",
                                    "key": "legalEntity_reference",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Transitionner la fiche (approuver \/ rejeter \/ compl\u00e9ment \/ resoumettre)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-entities\/:legalEntity_reference\/transitions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-entities\/:legalEntity_reference\/transitions",
                            "variable": [
                                {
                                    "id": "legalEntity_reference",
                                    "key": "legalEntity_reference",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"action\":\"reject\",\"observation\":\"b\",\"viability_outcome\":\"favorable\",\"legal_opinion\":\"n\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Lister les paiements de la personne morale",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-entities\/:legalEntity_reference\/payments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-entities\/:legalEntity_reference\/payments",
                            "variable": [
                                {
                                    "id": "legalEntity_reference",
                                    "key": "legalEntity_reference",
                                    "value": "architecto",
                                    "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Initier le paiement des frais de personnalit\u00e9 juridique",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-entities\/:legalEntity_reference\/payments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-entities\/:legalEntity_reference\/payments",
                            "variable": [
                                {
                                    "id": "legalEntity_reference",
                                    "key": "legalEntity_reference",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"payment_method\":\"card\",\"wallet_id\":\"b\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Signer l'arr\u00eat\u00e9 et d\u00e9livrer la personnalit\u00e9 juridique",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-entities\/:legalEntity_reference\/issue",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-entities\/:legalEntity_reference\/issue",
                            "variable": [
                                {
                                    "id": "legalEntity_reference",
                                    "key": "legalEntity_reference",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "T\u00e9l\u00e9charger un document officiel (certificate|decree|plaque)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-entities\/:legalEntity_reference\/documents\/:type",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-entities\/:legalEntity_reference\/documents\/:type",
                            "variable": [
                                {
                                    "id": "legalEntity_reference",
                                    "key": "legalEntity_reference",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "type",
                                    "key": "type",
                                    "value": "architecto",
                                    "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Cr\u00e9er une fiche personne morale",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-entities",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-entities"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"nature\":\"foundation\",\"denomination\":\"b\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Consulter une fiche personne morale",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-entities\/:legalEntity_reference",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-entities\/:legalEntity_reference",
                            "variable": [
                                {
                                    "id": "legalEntity_reference",
                                    "key": "legalEntity_reference",
                                    "value": "architecto",
                                    "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "G\u00e9n\u00e9rer la fiche d'identification (PDF)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-entities\/:legalEntity_reference\/identification-sheet",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-entities\/:legalEntity_reference\/identification-sheet",
                            "variable": [
                                {
                                    "id": "legalEntity_reference",
                                    "key": "legalEntity_reference",
                                    "value": "architecto",
                                    "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": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Section 1 \u2014 Nature et identification",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-entities\/:legalEntity_reference\/identification",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-entities\/:legalEntity_reference\/identification",
                            "variable": [
                                {
                                    "id": "legalEntity_reference",
                                    "key": "legalEntity_reference",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"nature\":\"federation_network\",\"denomination\":\"b\",\"acronym\":\"n\",\"former_denomination\":\"g\",\"creation_date\":\"2026-08-20T03:25:01\",\"duration_type\":\"indefinite\",\"duration_value\":\"z\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Section 2 \u2014 Si\u00e8ge social",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-entities\/:legalEntity_reference\/seat",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-entities\/:legalEntity_reference\/seat",
                            "variable": [
                                {
                                    "id": "legalEntity_reference",
                                    "key": "legalEntity_reference",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"city\":\"b\",\"municipality\":\"n\",\"quarter\":\"g\",\"avenue\":\"z\",\"parcel_number\":\"m\",\"phone\":\"i\",\"email\":\"okon.justina@example.com\",\"website\":\"n\",\"gps_latitude\":\"i\",\"gps_longitude\":\"k\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Section 3 \u2014 Objet et mission",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-entities\/:legalEntity_reference\/object-mission",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-entities\/:legalEntity_reference\/object-mission",
                            "variable": [
                                {
                                    "id": "legalEntity_reference",
                                    "key": "legalEntity_reference",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"vision\":\"architecto\",\"mission\":\"architecto\",\"main_object\":\"architecto\",\"objective_1\":\"n\",\"objective_2\":\"g\",\"objective_3\":\"z\",\"intervention_domains\":[\"human_rights\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Sections 10-11 \u2014 Gouvernance et organes",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-entities\/:legalEntity_reference\/governance",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-entities\/:legalEntity_reference\/governance",
                            "variable": [
                                {
                                    "id": "legalEntity_reference",
                                    "key": "legalEntity_reference",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"constitutive_assembly_date\":\"2026-08-20T03:25:01\",\"constitutive_assembly_place\":\"b\",\"founders_count\":39,\"members_count\":84,\"quorum\":\"z\",\"statutes_adoption_date\":\"2026-08-20T03:25:01\",\"internal_rules_adoption_date\":\"2026-08-20T03:25:01\",\"administrators_designation_date\":\"2026-08-20T03:25:01\",\"mandate_duration\":\"m\",\"organs\":[\"executive_secretariat\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Section 12 \u2014 Ressources",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-entities\/:legalEntity_reference\/resources",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-entities\/:legalEntity_reference\/resources",
                            "variable": [
                                {
                                    "id": "legalEntity_reference",
                                    "key": "legalEntity_reference",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"funding_sources\":[\"contributions\"],\"annual_budget\":\"b\",\"bank_account\":\"n\",\"employees_count\":84,\"volunteers_count\":12,\"beneficiaries_count\":77}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Section 13 \u2014 Structure confessionnelle",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-entities\/:legalEntity_reference\/confessional",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-entities\/:legalEntity_reference\/confessional",
                            "variable": [
                                {
                                    "id": "legalEntity_reference",
                                    "key": "legalEntity_reference",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"confession\":\"b\",\"doctrine\":\"architecto\",\"parent_organization\":\"n\",\"spiritual_authority\":\"g\",\"worship_places_count\":12,\"faithful_count\":77,\"legal_rep_theological_training\":\"i\",\"diploma_institution_year\":\"y\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Section 14 \u2014 Si\u00e8ge et viabilit\u00e9",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-entities\/:legalEntity_reference\/viability",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-entities\/:legalEntity_reference\/viability",
                            "variable": [
                                {
                                    "id": "legalEntity_reference",
                                    "key": "legalEntity_reference",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"seat_occupation\":\"provided_free_of_charge\",\"lease_title\":\"b\",\"approximate_area\":\"n\",\"reception_capacity\":\"g\",\"has_electricity\":true,\"has_water\":true,\"has_internet\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Sections 5\/9\/16 \u2014 Repr\u00e9sentants et d\u00e9clarant",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-entities\/:legalEntity_reference\/representatives",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-entities\/:legalEntity_reference\/representatives",
                            "variable": [
                                {
                                    "id": "legalEntity_reference",
                                    "key": "legalEntity_reference",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"mandatary_mode\":\"mandatary\",\"mandate_reference\":\"b\",\"declarant_capacity\":\"n\",\"declaration_place\":\"g\",\"declaration_date\":\"2026-08-20T03:25:01\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Section 15 \u2014 Joindre une pi\u00e8ce \u00e0 la liasse",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-entities\/:legalEntity_reference\/attachments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-entities\/:legalEntity_reference\/attachments",
                            "variable": [
                                {
                                    "id": "legalEntity_reference",
                                    "key": "legalEntity_reference",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "attachment_type",
                                    "value": "b",
                                    "type": "text",
                                    "description": "Le texte de value ne peut pas contenir plus de 255 caract\u00e8res."
                                },
                                {
                                    "key": "file",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Associer une personne physique \u00e0 la personne morale",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-entities\/:legalEntity_reference\/members",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-entities\/:legalEntity_reference\/members",
                            "variable": [
                                {
                                    "id": "legalEntity_reference",
                                    "key": "legalEntity_reference",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"citizen_id\":\"architecto\",\"role\":\"effective_member\",\"function\":\"n\",\"designation_date\":\"2026-08-20T03:25:01\",\"mandate\":\"g\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Retirer une personne associ\u00e9e",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-entities\/:legalEntity_reference\/members\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-entities\/:legalEntity_reference\/members\/:id",
                            "variable": [
                                {
                                    "id": "legalEntity_reference",
                                    "key": "legalEntity_reference",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": 16,
                                    "description": "The ID of the member."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                }
            ]
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "Authorization",
                "type": "string"
            }
        ]
    }
}