User

Create user

Creates a new user and sends a confirmation email.

POST
/api/v2/users

Authorization

BearerAuthObject
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

curl -X POST "https://example.com/api/v2/users" \  -H "Content-Type: application/json" \  -d '{    "email": "string",    "fullName": "string",    "roles": [      "string"    ]  }'
Empty
Empty
Empty
Empty