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

# Create a quick inventory adjustment.



## OpenAPI

````yaml api-reference/openapi.json post /api/inventory-adjustments/quick
openapi: 3.0.0
info:
  title: Bigcapital
  description: Financial accounting software
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /api/inventory-adjustments/quick:
    post:
      tags:
        - Inventory Adjustments
      summary: Create a quick inventory adjustment.
      operationId: InventoryAdjustmentsController_createQuickInventoryAdjustment
      parameters:
        - name: Authorization
          in: header
          description: >-
            Value must be 'Bearer <token>' where <token> is an API key prefixed
            with 'bc_' or a JWT token.
          required: true
          schema:
            type: string
            example: Bearer bc_1234567890abcdef
        - name: organization-id
          in: header
          description: >-
            Required if Authorization is a JWT token. The organization ID to
            operate within.
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateQuickInventoryAdjustmentDto'
      responses:
        '200':
          description: The inventory adjustment has been successfully created.
components:
  schemas:
    CreateQuickInventoryAdjustmentDto:
      type: object
      properties:
        date:
          format: date-time
          type: string
          description: Date of the inventory adjustment
        type:
          type: string
          description: Type of adjustment
          enum:
            - increment
            - decrement
        adjustmentAccountId:
          type: number
          description: ID of the adjustment account
        reason:
          type: string
          description: Reason for the adjustment
        description:
          type: string
          description: Description of the adjustment
        referenceNo:
          type: string
          description: Reference number
        itemId:
          type: number
          description: ID of the item being adjusted
        quantity:
          type: number
          description: Quantity to adjust
        cost:
          type: number
          description: Cost of the item
        publish:
          type: boolean
          description: Whether to publish the adjustment immediately
        warehouseId:
          type: number
          description: ID of the warehouse (optional)
        branchId:
          type: number
          description: ID of the branch (optional)
      required:
        - date
        - type
        - adjustmentAccountId
        - reason
        - description
        - referenceNo
        - itemId
        - quantity
        - cost
        - publish

````