Inventory Transaction Object
  • 1 Minute to read
  • PDF

Inventory Transaction Object

  • PDF

Article Summary

Inventory Transaction Object

 

 

TransactionType

 

Description: The type of transaction performed.

Data Type: String

Note: ReadOnly

 

 

 

ItemOrLp

 

Description: The item or license plate that the inventory transaction was performed upon.

Data Type: String

Note: ReadOnly

 

 

 

CoreValue

 

Description: The lot number/serial number/expiration date of the item (if the transaction was for an item) that was used.

Data Type: String

Note: ReadOnly

 

 

 

Quantity

 

Description: A decimal value representing the quantity affected by the inventory transaction.

Data Type: Number

Note: ReadOnly

 

 

 

EndingQuantity

 

Description: A decimal value representing the ending quantity for the item or license plate after the inventory transaction occurred.

Data Type: Number

Note: ReadOnly

 

 

 

Location

 

Description: The bin number where the transaction took place.

Data Type: String

Note: ReadOnly

 

 

 

UserName

 

Description: The username of the user who performed the transaction.

Data Type: String

Note: ReadOnly

 

 

 

Date 

 

Description: A date representing the date and time the transaction occurred.

Data Type:

Note: Can default to 0001-01-01T00:00:00. ReadOnly

 

 

 

Identity

 

Description: This is an identifier for each transaction record.

Data Type: String

Note: If the transaction type is “Inventory Adjustment” then this value is the unique identifier, and is used to complete/export inventory adjustments. ReadOnly

 

 

 

Exported 

 

Description: This is used to determine if a record has or hasn’t been exported out to a different system.

Data Type: Boolean

Value: true, false

Note: ReadOnly

 

 

 

InternalOnly

 

Description: Use this value to determine if a record should export.

Data Type: Boolean

Values: true, false

InternalOnly = true, it means that the transaction should stay in WithoutWire.

Note: This value really only applies to inventory adjustments. ReadOnly

 

 

 

Example

 

[

    {

          "TransactionType": "Inventory Adjustment",

          "ItemOrLp": "Item001",

          "CoreValue": "Lot001",

          "Quantity": 15.0,

           "EndingQuantity": 30.0,

          "Location": "Warehouse",

          "UserName": "Support",

          "Date": "2014-06-17T00:00:00",

          "Identity": "25",

          "Exported": false,

          "InternalOnly": false

    }

]