22 lines
275 B
Plaintext
22 lines
275 B
Plaintext
meta {
|
|
name: Register
|
|
type: http
|
|
seq: 1
|
|
}
|
|
|
|
post {
|
|
url: {{API_URL}}/account/register
|
|
body: json
|
|
auth: none
|
|
}
|
|
|
|
body:json {
|
|
{
|
|
"username": "user",
|
|
"email": "user@example.com",
|
|
"password": "changeme",
|
|
"firstName": "John",
|
|
"lastName": "Doe"
|
|
}
|
|
}
|