How to Create New Users
Humata provides a straightforward API solution for organizations to handle user sign-up and login processes.
This endpoint allows organization admins to create new user accounts.
Authorizations
AuthorizationstringRequired
API key provided as a Bearer token in the Authorization header.
Body
first_namestringRequiredExample:
Johnlast_namestringRequiredExample:
DoeemailstringRequiredExample:
[email protected]passwordstringRequiredExample:
passwordbypass_email_verificationbooleanOptionalExample:
trueResponses
201
User created successfully.
application/json
post
/v1/users201
User created successfully.
This endpoint allows organization admins to generate a One-Time Password (OTP) token for their users. OTP tokens expire after 60 minutes.
Authorizations
AuthorizationstringRequired
API key provided as a Bearer token in the Authorization header.
Body
emailstringRequiredExample:
[email protected]providerstringOptionalExample:
emailResponses
200
Token generated successfully.
application/json
post
/v1/users/token200
Token generated successfully.
Last updated