> ## Documentation Index
> Fetch the complete documentation index at: https://docs.thestartlaw.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Create User

> New User



## OpenAPI

````yaml POST /user
openapi: 3.0.3
info:
  title: API Atlas BFF
  version: 1.0.0
  contact: {}
servers:
  - url: https://atlas-back.fly.dev
security: []
tags:
  - name: User
  - name: Staff
  - name: Client
  - name: Notification
  - name: Subscription
  - name: Subscriber
  - name: Product
  - name: Acquisition
  - name: Tag
  - name: Tasks
paths:
  /user:
    post:
      tags:
        - User
      summary: New User
      description: New User
      operationId: newUser
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                email:
                  type: string
                  example: straube@straube.com
                name:
                  type: string
                  example: Andre
                password:
                  type: string
                  example: '123456'
            example:
              email: straube@straube.com
              name: Andre
              password: '123456'
      responses:
        '200':
          description: ''

````