POST api/FWebMobile/Warehouse/SaveInboundPutawayInventoryTransaction

Request Information

URI Parameters

None.

Body Parameters

SaveInboundInventoryTransactionRequest
NameDescriptionTypeAdditional information
Context

WarehouseTransactionContext

None.

TransactionKeyIdNo

The KeyFld value from the DataCorp.trans table that uniquely identifies the record.

integer

None.

PackageCode

string

None.

PackagesPerPallet

integer

None.

PackageUnitWeight

decimal number

None.

PalletQuantity

integer

None.

PackageQuantity

integer

None.

TotalWeight

decimal number

None.

LocationId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Context": {
    "TransactionType": 1,
    "TransactionIdNo": 1,
    "EmployeeIdNo": 2,
    "GeoLocationIdNo": 3,
    "WarehouseLocationIdNo": 4,
    "CompanyCode": "sample string 5",
    "DcCostCenterId": "sample string 6",
    "DcWarehouseId": "sample string 7",
    "IsBarcodingEnabled": true,
    "EmployeeFirstName": "sample string 9",
    "EmployeeLastName": "sample string 10",
    "EmployeeFullName": "sample string 9 sample string 10",
    "WarehouseDescription": "sample string 11",
    "ValidDoorLocations": [
      "sample string 1",
      "sample string 2"
    ],
    "ValidWarehouseLocations": null
  },
  "TransactionKeyIdNo": 1,
  "PackageCode": "sample string 2",
  "PackagesPerPallet": 3,
  "PackageUnitWeight": 4.0,
  "PalletQuantity": 5,
  "PackageQuantity": 15,
  "TotalWeight": 60.0,
  "LocationId": "SAMPLE STRING 6"
}

text/html

Sample:
{"Context":{"TransactionType":1,"TransactionIdNo":1,"EmployeeIdNo":2,"GeoLocationIdNo":3,"WarehouseLocationIdNo":4,"CompanyCode":"sample string 5","DcCostCenterId":"sample string 6","DcWarehouseId":"sample string 7","IsBarcodingEnabled":true,"EmployeeFirstName":"sample string 9","EmployeeLastName":"sample string 10","EmployeeFullName":"sample string 9 sample string 10","WarehouseDescription":"sample string 11","ValidDoorLocations":["sample string 1","sample string 2"],"ValidWarehouseLocations":null},"TransactionKeyIdNo":1,"PackageCode":"sample string 2","PackagesPerPallet":3,"PackageUnitWeight":4.0,"PalletQuantity":5,"PackageQuantity":15,"TotalWeight":60.0,"LocationId":"SAMPLE STRING 6"}

Response Information

Resource Description

GenericTransactionResponse
NameDescriptionTypeAdditional information
ReturnedObject

Object

None.

IsSuccessful

Indicates if the transaction was successful or not.

boolean

None.

ReturnedMessages

Contains a list of Informational, Warning, and/or Error messages regarding the outcome of the transaction.

Collection of ReturnedMessage

None.

Response Formats

application/json, text/json

Sample:
{
  "ReturnedObject": {},
  "IsSuccessful": true,
  "ReturnedMessages": null
}

text/html

Sample:
{"ReturnedObject":{},"IsSuccessful":true,"ReturnedMessages":null}