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

# Create profile

> Create a new server persona/profile



## OpenAPI

````yaml api-docs/archived/atlas.json post /v1/regions/{region}/infrastructure/profiles
openapi: 3.1.1
info:
  title: Infrastructure API
  version: 1.0.0
  description: >-
    Infrastructure API for the k0rdent Enterprise platform. Provides bare-metal
    server lifecycle management, inventory tracking, bulk enrollment, persona
    profiles, and network switch management.
  contact:
    name: k0rdent Enterprise API Support
    email: api-support@example.com
    url: https://support.example.com
  license:
    name: Proprietary
    url: https://k0rdent.example.com/license
servers:
  - url: ''
    description: For documentation only
  - url: https://api.internal.example.com
    description: Atlas API Base URL
  - url: https://api.example.com
    description: Arc API Base URL
  - url: http://localhost:{port}
    description: Local Development
    variables:
      port:
        default: '4010'
        description: Infrastructure service port
security: []
paths:
  /v1/regions/{region}/infrastructure/profiles:
    post:
      tags:
        - Profiles
      summary: Create profile
      description: Create a new server persona/profile
      operationId: createProfile
      parameters:
        - name: region
          in: path
          required: true
          schema:
            type: string
          description: Region identifier
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                description:
                  type: string
                  nullable: true
                type:
                  type: string
                  enum:
                    - kubernetes-control-plane
                    - kubernetes-worker
                    - storage
                    - compute
                    - custom
                config:
                  type: object
                  nullable: true
                  additionalProperties: true
              required:
                - name
                - type
      responses:
        '201':
          description: Profile created
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    $ref: '#/components/schemas/Profile'
components:
  schemas:
    Profile:
      type: object
      description: Server persona/profile definition
      properties:
        id:
          type: string
          description: Profile identifier
        name:
          type: string
          description: Profile name
        description:
          type: string
          nullable: true
        type:
          type: string
          enum:
            - kubernetes-control-plane
            - kubernetes-worker
            - storage
            - compute
            - custom
          description: Profile type/persona
        config:
          type: object
          nullable: true
          additionalProperties: true
          description: Profile-specific configuration
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      required:
        - id
        - name
        - type

````