POST
/
users
curl --request POST \
  --url https://api.smokeball.com/users \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json-patch+json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "email": "user@domain.com",
  "password": "<string>",
  "expireAfterDays": 7,
  "isInternal": true
}'
This response does not have an example.

Authorizations

x-api-key
string
header
required
Authorization
string
header
required

Body

Response

200

When request is successful. Returns a 'User' object.