Field Squared API Services

<back to all web services

InventoryCategory

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


open class InventoryCategory : InventoryTreeNode()
{
    var Type:String? = null
    var ObjectId:String? = null
    var Workspace:String? = null
    var ItemCategory:String? = null
    var HideFor:ArrayList<String> = ArrayList<String>()
    var ShowFor:ArrayList<String> = ArrayList<String>()
    var ParentCategoryId:String? = null
    var Enabled:Boolean? = null
    var ChildNodes:ArrayList<InventoryTreeNode> = ArrayList<InventoryTreeNode>()
    var IncludeInactive:Boolean? = null
}

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

Kotlin InventoryCategory 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}/InventoryCategory HTTP/1.1 
Host: dev.fieldsquared.com 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<InventoryCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Field2Office.API.Model.Inventory">
  <DescendantCount>0</DescendantCount>
  <ChildNodes>
    <InventoryTreeNode i:nil="true" />
  </ChildNodes>
  <Enabled>false</Enabled>
  <HideFor xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>String</d2p1:string>
  </HideFor>
  <IncludeInactive>false</IncludeInactive>
  <ItemCategory>String</ItemCategory>
  <ObjectId>String</ObjectId>
  <ParentCategoryId>String</ParentCategoryId>
  <ShowFor xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>String</d2p1:string>
  </ShowFor>
  <Workspace>String</Workspace>
</InventoryCategory>