---
title: "Create User"
method: POST
path: "/business/v2/employees/create"
tags: ["Users"]
---

# Create User

`POST /business/v2/employees/create`

Endpoint to create a new `User`.

## Headers

- `X-Soldo-Fingerprint` string, required — [Advanced authentication](ref:advanced-authentication): `SHA512SUM` of the fingerprint values listed in the fingerprint order for this endpoint.
- `X-Soldo-Fingerprint-Signature` string, required — [Advanced authentication](ref:advanced-authentication): Signature of the `X-Soldo-Fingerprint`.

## Request body

- CreateUser
  - `request_timestamp` integer, required — The epoch timestamp in millis. This is checked in Soldo. Requests with timestamp older than 5 seconds will be rejected.
  - `name` string, required — The name of the `User`.
  - `middlename` string — The middle name of the `User`.
  - `surname` string, required — The surname of the `User`.
  - `job_title` string — The job title of the `User`.
  - `email` string — The email address of the `User`.
  - `mobile` string, required — The mobile number of the `User`.
  - `mobile_prefix` string, required — The mobile number country prefix (e.g. +44).
  - `mobile_access` boolean, required — It determines whether the `User` has mobile access.
  - `web_access` boolean, required — It determines whether the `User` has web access.
  - `custom_reference_id` string — The `User` reference in an external system.
  - `reports_to` string — The ID of the `User` they report to.
  - `status` 'ACTIVE' | 'INACTIVE'

## Response `200`

The returned result is an `User`.

- User
  - `id` string — The `User` ID.
  - `name` string — The name of the `User` (sortable: yes).
  - `surname` string — The surname of the `User` (sortable: yes).
  - `middlename` string — The middlename of the `User` (sortable: no).
  - `dob` string — The Date of birth of the `User`.
  - `job_title` string — The job title of the `User` (sortable: yes).
  - `department` string — The department of the `User` (sortable: no).
  - `email` string — The email address of the `User` (sortable: no).
  - `mobile` string — The mobile number of the `User` including the country code (sortable: no).
  - `mobile_prefix` string — The mobile number country code (sortable: no).
  - `custom_reference_id` string — The reference of the employee in an external system (sortable: yes).
  - `status` 'ACTIVE' | 'INACTIVE' | 'BLOCKED' | 'SUSPENDED' | 'PENDING' | 'ARCHIVED'
  - `visible` boolean — It determines whether the `User` is visible in the web console (sortable: yes).
  - `mobile_access` boolean — It determines whether the `User` has mobile access (sortable: no).
  - `web_access` boolean — It determines whether the `User` has web access (sortable: no).
  - `groups` string[] — The list of `Groups` ID the `User` is member of (sortable: no).
  - `shipping_address` Address
    - `id` string — The `Address` ID.
    - `recipient` string — The recipient of the `Address`
    - `name` string — The actual name of the `Address`.
    - `line1` string — The `Address` street.
    - `line2` string — An optional other street.
    - `country` string — The country of the `Address`.
    - `county` string — The county of the `Address`.
    - `city` string — The city of the `Address`.
    - `post_code` string — The postal code of the `Address`.
    - `delivery_phone_number` string — Delivery phone number
    - `default_shipping` boolean — True if the `Address` is the default shipping address.
    - `type` string — The type of the `Address`.
    - `category` 'USER' | 'COMPANY'
    - `user_id` string — The `User` ID, only if category of the `Address` is `USER`.
    - `creation_time` string — The date and time when the `Address` was created.
    - `last_update` string — The date and time when the `Address` was last updated.
  - `reports_to` string — The ID of the `User` it reports to.
  - `roles` UserRole[] — The list of `UserRole` of the `User`.
    - `id` string — The ID of the `UserRole`.
    - `name` string — The name of the `UserRole`.
    - `description` string — The description of the `UserRole`.
    - `scope` string — The scope of the `UserRole`.
  - `contact_id` string — The ID of the `Contact` assigned to the `User`. This information can be updated from the [Add Contact](ref:contact-add) and [Update Contact](ref:contact-update) endpoints.
  - `creation_time` string — The date and time when the `User` was created (sortable: yes).
  - `last_update` string — The date and time when the `User` was last updated (sortable: yes).
  - `work_status` 'AVAILABLE' | 'OUT_OF_OFFICE'

## Other responses

- `400` — Your request has missing arguments or is malformed.

---

[API](https://skmtc.net/soldo/apis/soldo-business-api-v2-0.md) · [All operations](https://skmtc.net/soldo/apis/soldo-business-api-v2-0/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/soldo/soldo-business-api-v2-0/revisions/7be21448a2b3/schema)
