Users
Create users in batch
This method allows creating multiple users in a single request.
Method
POST
/api.hesh.app/api/v1/public/users/batch
Method Returns
The method returns a list of created user objects with their details, including IDs, status, and other metadata
Permissions required
Requires x-tenant-id (UUID v4) in the request header to identify the tenant.
Request
Headers:
x-tenant-id
(string, UUID v4) - Tenant ID Example:40dd0c53-2fa7-4193-82ae-14d4e62c20fb
Body (application/json):
Field users: An array containing user objects with the following fields:
external_user_id
(string): External identifier for the user (e.g., email).email
(string): The user's email address.first_name
(string): The user's first name.last_name
(string): The user's last name.phone
(string): The user's phone number.
Path parameters
This method does not require any additional path parameters.
Response
200 OK: Successfully created clients. A list of client objects is returned.
Response body (application/json):
Response fields:
id
(string, UUID): The unique identifier of the created useremail
(string): The user's email addressavatar_image_url
(string): URL to the user's avatar imagefirst_name
(string): The user's first namelast_name
(string): The user's last nameexternal_user_id
(string): The external identifier for the userfull_name
(string): The user's full namephone
(string): The user's phone numberstatus
(string): The user's current status (e.g., Active)created_at
(string, ISO 8601): The timestamp when the user was created.userVacations
(array of objects): List of vacation periods assigned to the user. Each object includes:start_at
(string, ISO 8601): The start date of the vacationend_at
(string, ISO 8601): The end date of the vacation
Error Codes:
400
Bad Request
— Invalid data in the request401
Unauthorized
— Missing or incorrectx-tenant-id
500
Internal Server Error
— Internal server error
Last updated