Skip to main content
POST
/
v1
/
users
Create a user
curl --request POST \
  --url https://revstack.dev/v1/users \
  --header 'Content-Type: application/json' \
  --data '
{
  "environmentId": "<string>",
  "email": "jsmith@example.com",
  "role": "<string>",
  "name": "<string>",
  "metadata": {}
}
'
null

Body

application/json
environmentId
string
required
Minimum string length: 1
email
string<email>
required
role
string
required
Minimum string length: 1
name
string
metadata
object

Response

201 - application/json

User created

The response is of type unknown.