meta { name: 08 Update type: http seq: 8 } patch { url: {{baseUrl}}/api/v1/clients/{{clientId}} body: json auth: inherit } body:json { { "phone": "06 99 88 77 66", "address": "12 rue du Pain, 75011 Paris", "notes": "Mise à jour adresse + tel" } } tests { test("200 OK", function () { expect(res.getStatus()).to.equal(200); }); test("phone updated", function () { expect(res.getBody().data.phone).to.contain("06 99"); }); } docs { PATCH /api/v1/clients/:id Édition partielle : tous les champs sont optionnels. SIRET passé en `null` réinitialise le champ. }