24 lines
249 B
Plaintext
24 lines
249 B
Plaintext
meta {
|
|
name: Create user
|
|
type: http
|
|
seq: 2
|
|
}
|
|
|
|
post {
|
|
url: {{BASE_URL}}/users
|
|
body: json
|
|
auth: inherit
|
|
}
|
|
|
|
body:json {
|
|
{
|
|
"firstName": "Paul",
|
|
"lastName": "Test",
|
|
"email": "paul@coral.ch"
|
|
}
|
|
}
|
|
|
|
settings {
|
|
encodeUrl: true
|
|
}
|