25 lines
280 B
Text
25 lines
280 B
Text
meta {
|
|
name: createUser
|
|
type: http
|
|
seq: 2
|
|
}
|
|
|
|
post {
|
|
url: {{url}}/user/create
|
|
body: json
|
|
auth: inherit
|
|
}
|
|
|
|
body:json {
|
|
{
|
|
"userData": {
|
|
"userName": "bruno",
|
|
"email": "test@raemer.net"
|
|
},
|
|
"password": "bruno"
|
|
}
|
|
}
|
|
|
|
settings {
|
|
encodeUrl: true
|
|
}
|