Passer au contenu principal

SDK officiels

Un SDK Node orienté TypeScript, plus Python et PHP — démarrage rapide.

Intermédiaire· 4 min de lecture· Dernière mise à jour : 2026-05-05· 19 personnes ont trouvé cela utile
**Node.js / TypeScript** — disponible. ```bash npm install @glanevo/sdk ``` ```ts import { Glanevo } from "@glanevo/sdk"; const glanevo = new Glanevo({ apiKey: process.env.GLANEVO_KEY! }); const appt = await glanevo.appointments.create({ customerId: "cus_xxx", serviceId: "svc_xxx", staffId: "stf_xxx", startAt: "2026-05-22T14:00:00Z", }); console.log(appt.id); ``` **Python** — en bêta (prévu ; aucune date annoncée). ```bash pip install glanevo ``` ```py from glanevo import Glanevo g = Glanevo(api_key="sk_live_...") appt = g.appointments.create(customer_id="cus_x", service_id="svc_x", start_at="...") ``` **PHP** — en alpha (prévu ; aucune date annoncée). **Autre.** L'API REST fonctionne depuis n'importe quel langage ; pour un SDK communautaire, ouvrez une pull request sur GitHub. 📦 Dépôt : [github.com/glanevo/sdk](https://github.com/glanevo/sdk).

Cet article vous a-t-il été utile ?