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

# Resize compute profile

> Change a compute profile's speed multiplier over the organization's base warehouse. Requires an organization admin's API key.

Change an existing [compute profile](/app/query-management/compute-profiles)'s speed multiplier over your organization's base warehouse.

`size` accepts `1x`, `2x`, `4x`, `8x`, or `16x`.

<Note>
  Requires an organization admin's API key.
</Note>


## OpenAPI

````yaml post /api/v1/explorer/compute-profiles/{identifier}/size
openapi: 3.0.2
info:
  title: Allium API
  version: 0.1.0
servers:
  - url: https://api.allium.so
security: []
paths:
  /api/v1/explorer/compute-profiles/{identifier}/size:
    post:
      summary: Resize Compute Profile
      description: >-
        Change a compute profile's speed multiplier over the organization's base
        warehouse. Requires an organization admin's API key.
      operationId: >-
        update_compute_profile_size_api_v1_explorer_compute_profiles__identifier__size_post
      parameters:
        - name: identifier
          in: path
          required: true
          schema:
            type: string
            title: Identifier
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateComputeProfileSizeRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ComputeProfileInfo'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyBearer: []
components:
  schemas:
    UpdateComputeProfileSizeRequest:
      properties:
        size:
          $ref: '#/components/schemas/ComputeSizeMultiplier'
      type: object
      required:
        - size
      title: UpdateComputeProfileSizeRequest
    ComputeProfileInfo:
      properties:
        identifier:
          type: string
          title: Identifier
        name:
          type: string
          title: Name
        size:
          $ref: '#/components/schemas/ComputeSizeMultiplier'
        is_default:
          type: boolean
          title: Is Default
        queued:
          type: integer
          title: Queued
        running:
          type: integer
          title: Running
      type: object
      required:
        - identifier
        - name
        - size
        - is_default
        - queued
        - running
      title: ComputeProfileInfo
      description: An Explorer compute profile and the current depth of its query queue.
    HTTPValidationError:
      title: HTTPValidationError
      type: object
      properties:
        detail:
          title: Detail
          type: array
          items:
            $ref: '#/components/schemas/ValidationError'
    ComputeSizeMultiplier:
      type: string
      enum:
        - 1x
        - 2x
        - 4x
        - 8x
        - 16x
      title: ComputeSizeMultiplier
      description: >-
        Compute size as a speed multiplier over your organization's base
        warehouse.
    ValidationError:
      title: ValidationError
      required:
        - loc
        - msg
        - type
      type: object
      properties:
        loc:
          title: Location
          type: array
          items:
            anyOf:
              - type: string
              - type: integer
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
  securitySchemes:
    APIKeyBearer:
      type: apiKey
      in: header
      name: X-API-KEY

````