meta { name: create type: http seq: 1 } post { url: {{protocol}}//{{domain}}/user body: json auth: none } headers { Content-Type: application/json; charset=utf-8 Accept: application/json; charset=utf-8 } body:json { { "email": "{{email}}", "password": "{{password}}", "name": "Z. Charles Dziura" } } script:post-response { const body = res.getBody(); const data = body.data; if (res.status < 300 && data.sessionToken) { bru.setEnvVar("verificationToken", data.sessionToken); } }