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

# POST /invoice_items



## OpenAPI

````yaml /openapi/nimbo_api.yml post /invoice_items
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:
    post:
      tags:
        - Inventory Management
      summary: POST /invoice_items
      operationId: legacy_nimbo_api_post__invoice_items
      parameters: []
      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
                    invoice_item_locations_location_ids:
                      type: array
                      items:
                        type: integer
      responses:
        '201':
          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
          description: Successful response
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````