Invite Users

Invite users to a tenant. Accepts JSON array of users. Requires tenant_id in HashID format.

Body·AdminInviteUsersInput
required
application/json
  • tenant_id
    Type: string · Tenant Id Pattern: ^tenant_[a-zA-Z0-9]+$
    required

    Tenant HashID

  • users
    Type: array object[] · Users 1…100
    required

    List of users to invite

Responses
  • application/json
  • application/json
Request Example for post/admin/users/invite
curl https://ai.hatz.ai/v1/admin/users/invite \
  --request POST \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: YOUR_SECRET_TOKEN' \
  --data '{
  "tenant_id": "",
  "users": [
    {
      "email": "",
      "first_name": "",
      "last_name": "",
      "role": ""
    }
  ]
}'
{
  "message": "string",
  "total_new_users_created": 0,
  "total_new_users_failed": 0,
  "new_users_failed_emails": [],
  "results": [
    {}
  ]
}