---
title: "Create"
method: POST
path: "/public/api/users"
tags: ["Users"]
---

# Create

`POST /public/api/users`

You may create a new single user or multiple users using this action.    
When creating a single user the body contains a json object, when creating multiple users the body contains an array of objects.    
**Warning: a maximum of 1000 items can be sent in a single request.**

## Headers

- `Accept` string

## Request body

- object
  - `username` string
  - `password` string
  - `first_name` string
  - `last_name` string
  - `email` string
  - `language` string
  - `store_id` string
  - `photo` string
  - `client_role` string
  - `client_role_extension` string
  - `client_ids` string[]
  - `tags` string[]
  - `groups` string[]

## Response `200`

OK

- object[]
  - `user_id` string, required
  - `username` string, required
  - `first_name` string, required
  - `last_name` string, required
  - `client_role` string, required
  - `email` string, required
  - `groups` string[], required
  - `language` string, required
  - `photo` string, required
  - `store_id` string, required
  - `tags` string[], required
  - `client_ids` string[]
  - `created_date` string, required
  - `updated_date` string, required

---

[API](https://skmtc.net/yoobic/apis/yoobic-public-api.md) · [All operations](https://skmtc.net/yoobic/apis/yoobic-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/yoobic/yoobic-public-api/revisions/dd57df399bc4/schema)
