meta { name: 07 Get detail type: http seq: 7 } get { url: {{baseUrl}}/api/v1/clients/{{clientId}} body: none auth: inherit } tests { test("200 OK", function () { expect(res.getStatus()).to.equal(200); }); test("invoices array present", function () { expect(res.getBody().data.invoices).to.be.an("array"); }); } docs { GET /api/v1/clients/:id Détail enrichi : champs Client + stats agrégées + `invoices: []` (factures récentes, à brancher quand le domaine Invoice est rempli). Nécessite `clientId` capturé via "04 Create". }