> ## 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.

# Retrieves the inventory adjustments.



## OpenAPI

````yaml api-reference/openapi.json get /api/inventory-adjustments
openapi: 3.0.0
info:
  title: Bigcapital
  description: Financial accounting software
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /api/inventory-adjustments:
    get:
      tags:
        - Inventory Adjustments
      summary: Retrieves the inventory adjustments.
      operationId: InventoryAdjustmentsController_getInventoryAdjustments
      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
      responses:
        '200':
          description: The inventory adjustments have been successfully retrieved.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/InventoryAdjustmentResponseDto'
components:
  schemas:
    InventoryAdjustmentResponseDto:
      type: object
      properties:
        id:
          type: number
          description: The unique identifier of the inventory adjustment
          example: 1
        date:
          type: string
          description: The date of the inventory adjustment
          example: '2024-03-20'
        type:
          type: string
          description: The type of adjustment (increment or decrement)
          enum:
            - increment
            - decrement
          example: increment
        formattedType:
          type: string
          description: The formatted type of adjustment
          example: inventory_adjustment.increment
        adjustmentAccountId:
          type: number
          description: The ID of the adjustment account
          example: 100
        reason:
          type: string
          description: The reason for the adjustment
          example: Stock count discrepancy
        referenceNo:
          type: string
          description: The reference number for the adjustment
          example: IA-2024-001
        description:
          type: string
          description: Additional description of the adjustment
          example: Year-end inventory reconciliation
        userId:
          type: number
          description: The ID of the user who created the adjustment
          example: 1
        publishedAt:
          type: string
          description: The date when the adjustment was published
          example: '2024-03-20T10:00:00Z'
        branchId:
          type: number
          description: The ID of the branch where the adjustment was made
          example: 1
        warehouseId:
          type: number
          description: The ID of the warehouse where the adjustment was made
          example: 1
        createdAt:
          type: string
          description: The date when the adjustment was created
          example: '2024-03-20T09:00:00Z'
        entries:
          description: The entries associated with this adjustment
          items:
            type: array
          type: array
      required:
        - id
        - date
        - type
        - formattedType
        - adjustmentAccountId
        - reason
        - referenceNo
        - userId
        - branchId
        - warehouseId
        - createdAt
        - entries

````