recipe-backend/bruno/recipe-backend/UserRestResource/createUser.bru
2026-02-27 19:52:05 +01:00

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
}