Create a new user
POST/api/v1/users
Create a new user
Request
- application/json
Body
email string
name string
skipEmailValidation boolean
type string
Responses
- 201
- 400
- 500
Created
- application/json
- Schema
- Example (from schema)
Schema
email string
emailVerified boolean
error string
id string
name string
orgId string
type string
{
"email": "string",
"emailVerified": true,
"error": "string",
"id": "string",
"name": "string",
"orgId": "string",
"type": "string"
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "string"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "string"
}
Loading...