SmartAcc DynaMod Web API v2024.4 Build 0000 - Local

<back to all web services

CreateStockTakeSimple

Stock Module - Transaction

Stock Take API

Requires Authentication
Required permission:StockTake-Transaction.ADD
The following routes are available for this service:
POST/StockTakes/simpleCreate a record for Stock TakeAcStockTakeMID is a primary key
CreateStockTakeSimple Parameters:
NameParameterData TypeRequiredDescription
StockTakebodyStockTakeSimpleNo
StockTakeSimple Parameters:
NameParameterData TypeRequiredDescription
DocumentHeaderformAcStockTakeMSimpleNo
DocumentDetailsformList<AcStockTakeDSimple>No
AcStockTakeMSimple Parameters:
NameParameterData TypeRequiredDescription
AcStockTakeMIDformNVARCHAR(20)YesStock Take Document Number
AcLocationIDformNVARCHAR(20)YesLocation ID
DocumentDateformDATEYesDocument Date
RefDocumentNoformNVARCHAR(20)NoReference Number
DocumentRemarkformNVARCHAR(100)NoDocument Remark
ExtraRemark1formNVARCHAR(100)NoExtra Remark 1
ExtraRemark2formNVARCHAR(100)NoExtra Remark 2
ExtraRemark3formNVARCHAR(100)NoExtra Remark 3
ExtraRemark4formNVARCHAR(100)NoExtra Remark 4
CreateByformNVARCHAR(20)YesCreate By
CreateDateformDATETIMEYesCreate Date
EditByformNVARCHAR(20)YesEdit By
EditDateformDATETIMEYesCreate Date
StampformINTYesRecord Stamp. Always 0
AcStockTakeDSimple Parameters:
NameParameterData TypeRequiredDescription
AcStockTakeDIDformNVARCHAR(40)YesRecord ID. Recommend use GUID
AcStockTakeMIDformNVARCHAR(20)YesStock Take Document Number
ItemNoformINTYesItem Number
AcStockIDformNVARCHAR(40)YesStock ID
AcStockUOMIDformNVARCHAR(20)YesStock UOM ID
ItemQuantityNewformNUMERIC(18,4)YesNew Item Quantity
ItemRemark1formNVARCHAR(MAX)YesItem Remark 1
CreateStockTakeSimpleResponse Parameters:
NameParameterData TypeRequiredDescription
StockTakeformStockTakeSimpleNo
ResponseStatusformResponseStatusNo

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 /StockTakes/simple HTTP/1.1 
Host: snr2u.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	StockTake: 
	{
		DocumentHeader: 
		{
			AcStockTakeMID: String,
			AcLocationID: String,
			DocumentDate: 0001-01-01,
			RefDocumentNo: String,
			DocumentRemark: String,
			ExtraRemark1: String,
			ExtraRemark2: String,
			ExtraRemark3: String,
			ExtraRemark4: String,
			CreateBy: String,
			CreateDate: 0001-01-01,
			EditBy: String,
			EditDate: 0001-01-01,
			Stamp: 0
		},
		DocumentDetails: 
		[
			{
				AcStockTakeDID: String,
				AcStockTakeMID: String,
				ItemNo: 0,
				AcStockID: String,
				AcStockUOMID: String,
				ItemQuantityNew: 0,
				ItemRemark1: String
			}
		]
	}
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	StockTake: 
	{
		DocumentHeader: 
		{
			AcStockTakeMID: String,
			AcLocationID: String,
			DocumentDate: 0001-01-01,
			RefDocumentNo: String,
			DocumentRemark: String,
			ExtraRemark1: String,
			ExtraRemark2: String,
			ExtraRemark3: String,
			ExtraRemark4: String,
			CreateBy: String,
			CreateDate: 0001-01-01,
			EditBy: String,
			EditDate: 0001-01-01,
			Stamp: 0
		},
		DocumentDetails: 
		[
			{
				AcStockTakeDID: String,
				AcStockTakeMID: String,
				ItemNo: 0,
				AcStockID: String,
				AcStockUOMID: String,
				ItemQuantityNew: 0,
				ItemRemark1: String
			}
		]
	},
	ResponseStatus: 
	{
		ErrorCode: String,
		Message: String,
		StackTrace: String,
		Errors: 
		[
			{
				ErrorCode: String,
				FieldName: String,
				Message: String,
				Meta: 
				{
					String: String
				}
			}
		],
		Meta: 
		{
			String: String
		}
	}
}