API reference · Access Control & Users v1
POST/api/v1/users/bulk/create

Bulk create users (route currently mapped to single create)

Route currently delegates to ApiUserController.create(), so behavior is single-user create schema rather than bulk payload handling.

RBAC · user

Request body

Content type: application/json · schema AccessCreateUserBodyV1

usernamestringRequired
min length 3
emailstring <email>Required
passwordstringRequired
min length 8
first_namestring
last_namestring
phonestring
timezonestring
user_typestring
Enum: internalclientadmincontractor
contact_idstring <uuid>
two_factor_enabledboolean
is_google_userboolean
is_inactiveboolean
role_idsarray of string
itemsstring <uuid>

Response body

Success response 200 · schema AccessApiSuccessV1

dataanyOfRequired
anyOf (option 1)object
anyOf (option 2)array of object
itemsobject
metaobject

Response codes

200
Operation succeeded.
400
Validation failed (payload/query/path parsing).
401
API key missing/invalid or key user not found.
403
RBAC denied for user:create.
500
Unexpected controller/service failure.