POST api/InventoryLocation/SetNonTrackableProductLocation

Request Information

URI Parameters

None.

Body Parameters

SetNonTrackableLocationModel
NameDescriptionTypeAdditional information
NonTrackableProductLocationID

integer

Required

ProductID

integer

Required

ProductVariantID

integer

Required

Quantity

integer

Required

LevelID

integer

Required

CreatedByUserID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "NonTrackableProductLocationID": 1,
  "ProductID": 2,
  "ProductVariantID": 3,
  "Quantity": 4,
  "LevelID": 5,
  "CreatedByUserID": 6
}

application/xml, text/xml

Sample:
<SetNonTrackableLocationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">
  <CreatedByUserID>6</CreatedByUserID>
  <LevelID>5</LevelID>
  <NonTrackableProductLocationID>1</NonTrackableProductLocationID>
  <ProductID>2</ProductID>
  <ProductVariantID>3</ProductVariantID>
  <Quantity>4</Quantity>
</SetNonTrackableLocationModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseDetail
NameDescriptionTypeAdditional information
ResponseCode

integer

None.

ResponseText

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseCode": 1,
  "ResponseText": "sample string 2"
}

application/xml, text/xml

Sample:
<ResponseDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">
  <ResponseCode>1</ResponseCode>
  <ResponseText>sample string 2</ResponseText>
</ResponseDetail>