meta { name: 02 Get by slug type: http seq: 2 } get { url: {{baseUrl}}/api/v1/plans/{{planSlug}} body: none auth: inherit } tests { test("200 OK", function () { expect(res.getStatus()).to.equal(200); }); test("plan has steps array", function () { expect(res.getBody().data.steps).to.be.an("array"); }); } docs { GET /api/v1/plans/:slug Détail d'un plan par slug. Le SPA utilise des URLs lisibles : `/parametres/plans/standard-30j`. Slugs disponibles par défaut : `standard-30j`, `rapide-15j`, `patient-60j`, `ferme-7j`. }