22 lines
234 B
Text
22 lines
234 B
Text
meta {
|
|
name: Create user
|
|
type: http
|
|
seq: 1
|
|
}
|
|
|
|
post {
|
|
url: {{base_url}}/api/v1/users
|
|
body: json
|
|
auth: none
|
|
}
|
|
|
|
headers {
|
|
x-api-key: {{api_key}}
|
|
}
|
|
|
|
body:json {
|
|
{
|
|
"firstName": "Dennis",
|
|
"email": "me@dnsc.io"
|
|
}
|
|
}
|