meta { name: 02 Update my org type: http seq: 2 } patch { url: {{baseUrl}}/api/v1/organizations/me body: json auth: inherit } body:json { { "name": "Boulangerie Bruno", "siret": "12345678901234", "monthlyVolumeBucket": "10-50" } } tests { test("200 OK", function () { expect(res.getStatus()).to.equal(200); }); test("onboardingCompletedAt is set", function () { expect(res.getBody().data.onboardingCompletedAt).to.not.be.null; }); } docs { PATCH /api/v1/organizations/me Étape onboarding 2. Met à jour nom / SIRET (14 chiffres si fourni) / bucket de volume mensuel. Pose `onboardingCompletedAt` automatiquement la première fois qu'un nom non-vide est posé. Buckets valides : `moins-10`, `10-50`, `50-100`, `100-200`, `plus-200`. }