first commit
This commit is contained in:
commit
e6c52820cd
227 changed files with 16156 additions and 0 deletions
52
documentation/api.html
Normal file
52
documentation/api.html
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>SuiteConsultance — Documentation Utilisateur</title>
|
||||
<link rel="stylesheet" href="assets/style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="navbar">
|
||||
<div class="inner">
|
||||
<div class="brand">SuiteConsultance</div>
|
||||
<span class="badge">v1.0</span>
|
||||
<div class="navlinks"><a href="index.html">Accueil</a>
|
||||
<a href="installation.html">Installation</a>
|
||||
<a href="demarrage.html">Démarrage rapide</a>
|
||||
<a href="crm.html">CRM</a>
|
||||
<a href="email.html">Emails & Scraping</a>
|
||||
<a href="propositions.html">Propositions</a>
|
||||
<a href="devis.html">Devis</a>
|
||||
<a href="projets.html">Projets</a>
|
||||
<a href="taches.html">Tâches & Rappels</a>
|
||||
<a href="api.html" style="background:orange">API</a>
|
||||
<a href="donnees.html">Données & Sauvegarde</a>
|
||||
<a href="build.html">Build Desktop</a>
|
||||
<a href="depannage.html">Dépannage</a>
|
||||
<a href="faq.html">FAQ</a></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<h2>Endpoints disponibles</h2>
|
||||
|
||||
<h3>Recherche prospects</h3>
|
||||
<pre>GET /api/crm/prospects/search?q=...&name=...&email=...&company=...&status=...&city=...&tags=a,b&date_from=YYYY-MM-DD&date_to=YYYY-MM-DD</pre>
|
||||
<p>Retourne une liste filtrée par texte ou filtres spécifiques. Les <em>tags</em> sont tous requis s’ils sont fournis.</p>
|
||||
|
||||
<h3>Templates email (lecture)</h3>
|
||||
<pre>GET /api/email_template/<template_id></pre>
|
||||
|
||||
<h3>Créer des prospects depuis un scraping</h3>
|
||||
<pre>POST /api/scraping/create_prospects
|
||||
Content-Type: application/json
|
||||
[{"name":"...", "email":"...", "company":"..."}]</pre>
|
||||
|
||||
<h3>Tester la configuration email</h3>
|
||||
<pre>POST /api/test_email_config</pre>
|
||||
</div>
|
||||
|
||||
<div class="container footer small">Dernière mise à jour : 24 August 2025 • Ce guide couvre l’utilisation de la version actuelle de SuiteConsultance.</div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue