v1

latestOpenAPI 3.0.02026-07-24161215397.4 KB
Auth

Create a user

Creates a new set of user credentials. The credentials can be used later to log in to OfficeRnD member tools. The password that is being set for the user must have at least 3 out of the 4 elements below: Uppercase letter Lowercase letter Digit Symbol

Required scopes: flex.user.auth.signup

post/api/v2/organizations/{orgSlug}/auth/signup

Path parameters

orgSlugstring required

organization slug

Request body

emailstring required

The email of the new user.

passwordstring required

Password must be at least 8 characters long and contain 3 out of the 4 elements: uppercase letter, lowercase letter, digit or symbol.

namestring required

The name of the new user.

Example request

{
  "email": "https://image_url.com",
  "password": "Pa$$w0rd",
  "name": "John Doe"
}

Response

_idstring

The _id of the user.

emailstring

The email of the user.

namestring

The name of the user.

Example response

{
  "_id": "6a59d080856fad4ee4195302",
  "email": "example@gmail.com",
  "name": "John Doe"
}