Field Squared API Services

<back to all web services

InventoryTransferRequest

The following routes are available for this service:
PUT/{Workspace}/v2/InventoryTransfer
InventoryTransferRequest Parameters:
NameParameterData TypeRequiredDescription
ObjectIdbodystringNo
WorkspacepathstringNo
CreatedbodystringNo
FromAssetbodystringNo
FromTaskbodystringNo
ToAssetbodystringNo
ToTaskbodystringNo
SubmittedBybodystringNo
ApprovedBybodystringNo
Approvedbodybool?No
DescriptionbodystringNo
TransactionsbodyList<InventoryTransaction>No
InventoryTransaction Parameters:
NameParameterData TypeRequiredDescription
ItemTypeIdformstringNo
QtyformintNo
ItemsformList<string>No
SerialNumbersformList<string>No
UseSerialNumbersformboolNo

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.

PUT /{Workspace}/v2/InventoryTransfer HTTP/1.1 
Host: dev.fieldsquared.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	ObjectId: String,
	Workspace: String,
	Created: String,
	FromAsset: String,
	FromTask: String,
	ToAsset: String,
	ToTask: String,
	SubmittedBy: String,
	ApprovedBy: String,
	Approved: False,
	Description: String,
	Transactions: 
	[
		{
			ItemTypeId: String,
			Qty: 0,
			Items: 
			[
				String
			],
			SerialNumbers: 
			[
				String
			],
			UseSerialNumbers: False
		}
	]
}