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}
namespace Field2Office.API.Model.Inventory

open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    [<AllowNullLiteral>]
    type InventoryTreeNode() = 
        member val Type:String = null with get,set
        member val DescendantCount:Int32 = new Int32() with get,set

    [<AllowNullLiteral>]
    type InventoryItemType() = 
        inherit InventoryTreeNode()
        member val Type:String = null with get,set
        member val ObjectId:String = null with get,set
        member val Workspace:String = null with get,set
        member val ExternalId:String = null with get,set
        member val Created:String = null with get,set
        member val LastUpdated:String = null with get,set
        member val ItemType:String = null with get,set
        member val Desc:String = null with get,set
        member val VendorNum:String = null with get,set
        member val PurchasingUOM:String = null with get,set
        member val SalesUOM:String = null with get,set
        member val ReorderLevel:Nullable<Int32> = new Nullable<Int32>() with get,set
        member val ReorderQty:Nullable<Int32> = new Nullable<Int32>() with get,set
        member val DefaultUnitCost:Nullable<Double> = new Nullable<Double>() with get,set
        member val DefaultUnitPrice:Nullable<Double> = new Nullable<Double>() with get,set
        member val Barcode:String = null with get,set
        member val UseSerialNumbers:Nullable<Boolean> = new Nullable<Boolean>() with get,set
        member val Template:String = null with get,set
        member val Data:Dictionary<String, String> = new Dictionary<String, String>() with get,set
        member val Enabled:Nullable<Boolean> = new Nullable<Boolean>() with get,set
        member val ParentCategoryId:String = null with get,set
        member val IncludeInactive:Boolean = new Boolean() with get,set

F# InventoryItemType DTOs

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

HTTP + JSV

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: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	Type: ItemType,
	ObjectId: String,
	Workspace: String,
	ExternalId: String,
	Created: String,
	LastUpdated: String,
	ItemType: String,
	Desc: String,
	VendorNum: String,
	PurchasingUOM: String,
	SalesUOM: String,
	ReorderLevel: 0,
	ReorderQty: 0,
	DefaultUnitCost: 0,
	DefaultUnitPrice: 0,
	Barcode: String,
	UseSerialNumbers: False,
	Template: String,
	Data: 
	{
		String: String
	},
	Enabled: False,
	ParentCategoryId: String,
	IncludeInactive: False,
	DescendantCount: 0
}