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

# Create Application

> Creates a new application under the specified organization.
Requires the `create:applications` permission, available to users with a `member` or `owner` role in the organization.

Returns:
    The created application object with id and timestamp



## OpenAPI

````yaml POST /applications
openapi: 3.1.0
info:
  title: Unomiq Management API
  description: >-

    API for managing settings for organizations, applications and API keys.


    ## Authentication


    All API endpoints require authentication via JWT token in the Authorization
    header:


    ```

    Authorization: Bearer <your_jwt_token>

    ```
        
  version: 1.0.0
servers:
  - url: https://management-api.unomiq.com
    description: Production
security: []
paths:
  /applications:
    post:
      tags:
        - applications
      summary: Create Application
      description: >-
        Creates a new application under the specified organization.

        Requires the `create:applications` permission, available to users with a
        `member` or `owner` role in the organization.


        Returns:
            The created application object with id and timestamp
      operationId: create_application_applications_post
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApplicationCreateRequest'
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApplicationCreateResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    ApplicationCreateRequest:
      properties:
        organization_id:
          type: string
          title: Organization Id
          description: Organization ID that owns this application
        name:
          type: string
          maxLength: 255
          minLength: 1
          title: Name
          description: Application name
        region:
          $ref: '#/components/schemas/Region'
          description: Geographic region (US or EU)
      type: object
      required:
        - organization_id
        - name
        - region
      title: ApplicationCreateRequest
    ApplicationCreateResponse:
      properties:
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        created_at:
          type: string
          title: Created At
      type: object
      required:
        - id
        - name
        - created_at
      title: ApplicationCreateResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    Region:
      type: string
      enum:
        - US
        - EU
      title: Region
      description: Application region.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````