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

# Create Tier

> Create a new tier.



## OpenAPI

````yaml https://platform.tracecat.com/api/openapi.json post /admin/tiers
openapi: 3.1.0
info:
  title: Tracecat API
  summary: Tracecat API
  description: The open source AI automation platform for security teams and agents.
  termsOfService: >-
    https://docs.google.com/document/d/e/2PACX-1vQvDe3SoVAPoQc51MgfGCP71IqFYX_rMVEde8zC4qmBCec5f8PLKQRdxa6tsUABT8gWAR9J-EVs2CrQ/pub
  contact:
    name: Tracecat Founders
    email: founders@tracecat.com
  license:
    name: AGPL-3.0
    url: https://www.gnu.org/licenses/agpl-3.0.html
  version: '1'
servers:
  - url: /api
security: []
tags:
  - name: public
    description: Public facing endpoints
  - name: workflows
    description: Workflow management
  - name: actions
    description: Action management
  - name: triggers
    description: Workflow triggers
  - name: secrets
    description: Secret management
  - name: variables
    description: Workspace variable management
paths:
  /admin/tiers:
    post:
      tags:
        - admin
        - admin:tiers
      summary: Create Tier
      description: Create a new tier.
      operationId: admin-create_tier
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TierCreate'
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TierRead'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyCookie: []
components:
  schemas:
    TierCreate:
      properties:
        display_name:
          type: string
          maxLength: 255
          minLength: 1
          title: Display Name
        max_concurrent_workflows:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Concurrent Workflows
        max_action_executions_per_workflow:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Action Executions Per Workflow
        max_concurrent_actions:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Concurrent Actions
        api_rate_limit:
          anyOf:
            - type: integer
            - type: 'null'
          title: Api Rate Limit
        api_burst_capacity:
          anyOf:
            - type: integer
            - type: 'null'
          title: Api Burst Capacity
        entitlements:
          $ref: '#/components/schemas/EntitlementsDict'
          default: {}
        is_default:
          type: boolean
          title: Is Default
          default: false
        sort_order:
          type: integer
          title: Sort Order
          default: 0
      type: object
      required:
        - display_name
      title: TierCreate
      description: Create tier request.
    TierRead:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        display_name:
          type: string
          title: Display Name
        max_concurrent_workflows:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Concurrent Workflows
        max_action_executions_per_workflow:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Action Executions Per Workflow
        max_concurrent_actions:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Concurrent Actions
        api_rate_limit:
          anyOf:
            - type: integer
            - type: 'null'
          title: Api Rate Limit
        api_burst_capacity:
          anyOf:
            - type: integer
            - type: 'null'
          title: Api Burst Capacity
        entitlements:
          $ref: '#/components/schemas/EntitlementsDict'
        is_default:
          type: boolean
          title: Is Default
        sort_order:
          type: integer
          title: Sort Order
        is_active:
          type: boolean
          title: Is Active
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - id
        - display_name
        - max_concurrent_workflows
        - max_action_executions_per_workflow
        - max_concurrent_actions
        - api_rate_limit
        - api_burst_capacity
        - entitlements
        - is_default
        - sort_order
        - is_active
        - created_at
        - updated_at
      title: TierRead
      description: Tier response schema.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    EntitlementsDict:
      properties:
        custom_registry:
          type: boolean
          title: Custom Registry
          description: Whether custom registry repositories are enabled
        git_sync:
          type: boolean
          title: Git Sync
          description: Whether git sync is enabled
        agent_addons:
          type: boolean
          title: Agent Addons
          description: Whether add-on agent capabilities are enabled (approvals, presets)
        case_addons:
          type: boolean
          title: Case Addons
          description: >-
            Whether add-on case capabilities are enabled (dropdowns, durations,
            tasks, triggers)
        rbac_addons:
          type: boolean
          title: Rbac Addons
          description: >-
            Whether RBAC add-ons are enabled (custom roles, groups, and
            assignments)
        service_accounts:
          type: boolean
          title: Service Accounts
          description: Whether service accounts for API key access are enabled
        workspace_chat:
          type: boolean
          title: Workspace Chat
          description: Whether Workspace Chat is enabled
        watchtower:
          type: boolean
          title: Watchtower
          description: >-
            Whether Watchtower agent monitoring is enabled (agent sessions,
            tool-call telemetry, and controls)
      type: object
      title: EntitlementsDict
      description: |-
        TypedDict for tier entitlements stored in JSONB.

        All keys are optional (total=False) to support partial overrides.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyCookie:
      type: apiKey
      in: cookie
      name: fastapiusersauth

````