---
title: "Create user"
method: POST
path: "/v1/core/users"
---

# Create user

`POST /v1/core/users`

Create user

## Request body

- object
  - `email` string, required — The email of the user in your system. They will receive a password reset email to this address when their user is created in Siro.
  - `organizationId` string, required
  - `password` string — The temporary password for the user.Must be at least 12 chars long, including at least one uppercase, one lowercase, one number, and one symbol.
  - `phoneNumber` string — The user's phone number.
  - `firstName` string — The user's first name.
  - `lastName` string — The user's last name.
  - `memberTeamId` string — The 6 digit code for the user's team. Strongly suggested to add this.
  - `externalId` string — The unique id of the resource in your CRM system. Multiple resources cannot have the same externalId within the same organization.
  - `coachTeamIds` string[]
  - `isAdmin` boolean
  - `billable` boolean — Whether the user is billable and should be included in the license count
  - `contactSettings` object — Contact settings for the user
    - `suppressEmails` boolean — Whether the user should receive any emails
    - `suppressEmailErrors` boolean — If true, email-related errors will be logged but not thrown. User operations will succeed even if email operations fail. Defaults to false.

## Response `200`

Create user

- object
  - `id` string, required
  - `email` string, nullable, required
  - `organizationId` string, required
  - `phoneNumber` string, nullable, required
  - `firstName` string, nullable, required
  - `lastName` string, nullable, required
  - `memberTeamId` string, nullable, required
  - `coachTeamIds` string[], required
  - `externalId` string, nullable, required
  - `createdAt` string, nullable, required
  - `disabled` boolean, required
  - `billable` boolean, required
  - `contactSettings` object — Contact settings for the user
    - `suppressEmails` boolean — Whether the user should receive any emails
    - `suppressEmailErrors` boolean — If true, email-related errors will be logged but not thrown. User operations will succeed even if email operations fail. Defaults to false.

---

[API](https://skmtc.dev/siro/apis/swagger-api.md) · [All operations](https://skmtc.dev/siro/apis/swagger-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/siro/swagger-api/revisions/9995339a94c6/schema)
