---
title: "Create User"
method: POST
path: "/public/v1/users"
tags: ["User and Workspace management"]
---

# Create User

`POST /public/v1/users`

Create users, and assign them roles, licenses, and workspaces.

- You must be an organization admin to create users.
- We check that the user email domain matches your organization domain.
- We check that the user email and phone number have a valid format.

## Query parameters

- `notify_user` boolean
- `notify_ws_admins` boolean

## Request body

- CreateUserRequest
  - `user` object, required — User info
    - `email` string
    - `first_name` string
    - `last_name` string
    - `phone_number` string
  - `workspaces` object[], required — Info for adding a user to a workspace(s)
    - `workspace_id` string
    - `role` 'Admin' | 'Manager' | 'Member' | 'Collaborator' — Role for a member.
  - `license` 'Full' | 'eSign' | 'Read-only' | 'Creator' | 'Guest', required

## Response `201`

OK

- CreateUserResponse
  - `user_id` string
  - `workspaces` object[]
    - `workspace_id` string
    - `role` string
    - `member_id` string

## Other responses

- `400` — Bad Request
- `401` — Authentication error
- `403` — Permission error
- `404` — Not found
- `429` — Too Many Requests

---

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