This commit is contained in:
Paul Coral
2025-08-04 22:38:48 +02:00
parent 6050d9d3a3
commit 333fd824e3
41 changed files with 580 additions and 98 deletions

View File

@@ -0,0 +1,23 @@
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
}