meta { name: 02 Update profile type: http seq: 2 } patch { url: {{baseUrl}}/api/v1/account/profile body: json auth: inherit } body:json { { "fullName": "Alice Bruno (mise à jour)", "signature": "—\nAlice\nBoulangerie Bruno" } } tests { test("200 OK", function () { expect(res.getStatus()).to.equal(200); }); test("signature persisted", function () { expect(res.getBody().data.signature).to.contain("Boulangerie Bruno"); }); } docs { PATCH /api/v1/account/profile Met à jour fullName, email ou signature (tous optionnels). La signature est utilisée comme footer des emails de relance. }