> ## 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 /item_transactions



## OpenAPI

````yaml /openapi/nimbo_api.yml post /item_transactions
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:
  /item_transactions:
    post:
      tags:
        - Inventory Management
      summary: POST /item_transactions
      operationId: legacy_nimbo_api_post__item_transactions
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                item_transaction:
                  type: object
                  properties:
                    quantity:
                      type: integer
                    metadata:
                      type: object
                      properties:
                        account_email:
                          type: string
                          format: email
                        account_name:
                          type: string
                        invoice_item_description:
                          type: string
                    account_id:
                      type: string
                    location_id:
                      type: string
                    invoice_item_id:
                      type: string
      responses:
        '201':
          content:
            application/json:
              schema:
                type: object
                properties:
                  item_transaction:
                    type: object
                    properties:
                      id:
                        type: integer
                      account_id:
                        type: integer
                      invoice_item_id:
                        type: integer
                      metadata:
                        type: object
                        properties:
                          account_email:
                            type: string
                            format: email
                          account_name:
                            type: string
                          invoice_item_description:
                            type: string
                      quantity:
                        type: integer
          description: Successful response
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````