meta { name: 01 Get profile type: http seq: 1 } get { url: {{baseUrl}}/api/v1/account/profile body: none auth: inherit } tests { test("200 OK", function () { expect(res.getStatus()).to.equal(200); }); test("user shape", function () { const u = res.getBody().data; expect(u).to.have.property("id"); expect(u).to.have.property("email"); expect(u).to.have.property("organizationId"); }); } docs { GET /api/v1/account/profile Retourne l'utilisateur courant. Réponse `{ data: User }`. }