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

# PUT /invoice_items/{invoice_item_id}



## OpenAPI

````yaml /openapi/nimbo_api.yml put /invoice_items/{invoice_item_id}
openapi: 3.0.0
info:
  title: Nimbo API
  version: 1.0.0
  description: >-
    Nimbo API reference. Use the API host and integration access provided by
    Nimbo.
servers:
  - url: https://api.example.test
    description: Reference only; confirm your integration host with Nimbo
security: []
paths:
  /invoice_items/{invoice_item_id}:
    put:
      tags:
        - Inventory Management
      summary: PUT /invoice_items/{invoice_item_id}
      operationId: legacy_nimbo_api_put__invoice_items_invoice_item_id
      parameters:
        - name: invoice_item_id
          in: path
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                invoice_item:
                  type: object
                  properties:
                    value:
                      type: integer
                    active:
                      type: boolean
                    sku:
                      type: string
                    stockable:
                      type: boolean
                    tax_attributes:
                      type: object
                      properties:
                        kop_id:
                          type: integer
                        uom_id:
                          type: integer
                        kop_key:
                          type: string
                        uom_key:
                          type: string
                        tax_rate:
                          type: number
                        tax_type:
                          type: string
                          format: color
                        tax_amount:
                          nullable: true
                        factor_type:
                          type: string
                        rate_or_fee:
                          type: string
                        rate_or_fee_id:
                          type: integer
                        kop_description:
                          type: string
                        uom_description:
                          type: string
                    invoice_item_locations_location_ids:
                      type: array
                      items:
                        type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  invoice_item:
                    type: object
                    properties:
                      id:
                        type: integer
                      value:
                        type: integer
                      organization_id:
                        type: integer
                      active:
                        type: boolean
                      stock_total:
                        type: integer
                      stockable:
                        type: boolean
                      sku:
                        type: string
                      on_locations:
                        type: string
                      links:
                        type: object
                        properties:
                          invoice_item_locations:
                            type: string
                      invoice_item_locations_location_ids:
                        type: array
                        items:
                          type: integer
                      accounting_type:
                        type: string
                      tax_attributes:
                        type: object
                        properties:
                          kop_id:
                            type: integer
                          uom_id:
                            type: integer
                          kop_key:
                            type: string
                          uom_key:
                            type: string
                          tax_rate:
                            type: number
                          tax_type:
                            type: string
                            format: color
                          tax_amount:
                            nullable: true
                          factor_type:
                            type: string
                          rate_or_fee:
                            type: string
                          rate_or_fee_id:
                            type: integer
                          kop_description:
                            type: string
                          uom_description:
                            type: string
          description: Successful response
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````