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

# Create Client

> Create a new client



## OpenAPI

````yaml https://api.oviond.com/openapi.json post /v1/clients
openapi: 3.1.0
info:
  title: Oviond Backend API
  version: 1.0.0
  description: Authentication, account management, billing, and media services for Oviond.
  x-logo:
    url: https://app.oviond.com/img/oviond-full-logo.svg
    altText: Oviond
servers:
  - url: https://api.oviond.com
    description: Production
security:
  - ApiKeyAuth: []
  - BearerAuth: []
paths:
  /v1/clients:
    post:
      tags:
        - Clients
      summary: Create Client
      description: Create a new client
      operationId: create_client
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateClientRequest'
            example:
              name: Acme Demo
              website: acme.com
              timezone: UTC
              currency:
                iso: US
                code: USD
                symbol: $
      responses:
        '201':
          description: Client created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateClientResponse'
components:
  schemas:
    CreateClientRequest:
      type: object
      properties:
        name:
          type: string
          minLength: 1
          example: Acme Corp
        first_name:
          type: string
          example: Sarah
        website:
          type: string
          example: https://acme.com
        currency:
          allOf:
            - $ref: '#/components/schemas/CurrencyInput'
            - anyOf:
                - type: object
                  properties:
                    code:
                      type: string
                      pattern: ^[A-Z]{3}$
                      example: USD
                    symbol:
                      type: string
                      example: $
                    iso:
                      type:
                        - string
                        - 'null'
                      pattern: ^[A-Z]{2}$
                      example: US
                  required:
                    - code
                    - symbol
                - type: string
        number_format:
          allOf:
            - $ref: '#/components/schemas/NumberFormat'
            - type: string
        timezone:
          $ref: '#/components/schemas/IanaTimezone'
        manager:
          type: string
        domain_id:
          type: string
        theme_id:
          type: string
        folders:
          type: array
          items:
            type: string
      required:
        - name
        - website
        - currency
        - timezone
    CreateClientResponse:
      type: object
      properties:
        success:
          type: boolean
          enum:
            - true
        data:
          type: object
          properties:
            id:
              type: string
            _id:
              type: string
          required:
            - id
            - _id
      required:
        - success
        - data
    CurrencyInput:
      anyOf:
        - type: object
          properties:
            code:
              type: string
              pattern: ^[A-Z]{3}$
              example: USD
            symbol:
              type: string
              example: $
            iso:
              type:
                - string
                - 'null'
              pattern: ^[A-Z]{2}$
              example: US
          required:
            - code
            - symbol
        - type: string
        - type: 'null'
      description: >-
        ISO 4217 currency code (e.g. "USD") or a full { code, symbol, iso }
        object.
    NumberFormat:
      type:
        - string
        - 'null'
      description: >-
        BCP 47 locale driving number formatting, e.g. "en-US" → 1,234.56,
        "de-DE" → 1.234,56. Null/absent defaults to "en-US".
      example: en-US
    IanaTimezone:
      type: string
      example: America/New_York
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      description: >-
        Oviond API key (prefix `oviond_`) sent as a Bearer token — the
        credential for REST/programmatic and headless integrations. Manage keys
        in Settings → API Keys. API keys do NOT authenticate the MCP endpoint
        (/mcp), which uses OAuth 2.1 + PKCE.
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Supabase-issued JWT used by the Oviond web app session. External API
        consumers should authenticate with an Oviond API key (ApiKeyAuth)
        instead.

````