Field Squared API Services

<back to all web services

InventoryItemType

The following routes are available for this service:
GET,PUT,POST/{Workspace}/InventoryItemType
GET,PUT,POST/{Workspace}/InventoryItemType/{ObjectId}
import java.math.*
import java.util.*
import net.servicestack.client.*


open class InventoryItemType : InventoryTreeNode()
{
    var Type:String? = null
    var ObjectId:String? = null
    var Workspace:String? = null
    var ExternalId:String? = null
    var Created:String? = null
    var LastUpdated:String? = null
    var ItemType:String? = null
    var Desc:String? = null
    var VendorNum:String? = null
    var PurchasingUOM:String? = null
    var SalesUOM:String? = null
    var ReorderLevel:Int? = null
    var ReorderQty:Int? = null
    var DefaultUnitCost:Double? = null
    var DefaultUnitPrice:Double? = null
    var Barcode:String? = null
    var UseSerialNumbers:Boolean? = null
    var Template:String? = null
    var Data:HashMap<String,String> = HashMap<String,String>()
    var Enabled:Boolean? = null
    var ParentCategoryId:String? = null
    var IncludeInactive:Boolean? = null
}

open class InventoryTreeNode
{
    var Type:String? = null
    var DescendantCount:Int? = null
}

Kotlin InventoryItemType DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /{Workspace}/InventoryItemType HTTP/1.1 
Host: dev.fieldsquared.com 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<InventoryItemType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Field2Office.API.Model.Inventory">
  <DescendantCount>0</DescendantCount>
  <Barcode>String</Barcode>
  <Created>String</Created>
  <Data xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringstring>
      <d2p1:Key>String</d2p1:Key>
      <d2p1:Value>String</d2p1:Value>
    </d2p1:KeyValueOfstringstring>
  </Data>
  <DefaultUnitCost>0</DefaultUnitCost>
  <DefaultUnitPrice>0</DefaultUnitPrice>
  <Desc>String</Desc>
  <Enabled>false</Enabled>
  <ExternalId>String</ExternalId>
  <IncludeInactive>false</IncludeInactive>
  <ItemType>String</ItemType>
  <LastUpdated>String</LastUpdated>
  <ObjectId>String</ObjectId>
  <ParentCategoryId>String</ParentCategoryId>
  <PurchasingUOM>String</PurchasingUOM>
  <ReorderLevel>0</ReorderLevel>
  <ReorderQty>0</ReorderQty>
  <SalesUOM>String</SalesUOM>
  <Template>String</Template>
  <UseSerialNumbers>false</UseSerialNumbers>
  <VendorNum>String</VendorNum>
  <Workspace>String</Workspace>
</InventoryItemType>