_quantityImport
Documentation: _quantityImport
Function
_quantityImport
function is designed to import a batch of quantity data into the Shopranos platform. It manages the necessary authentication, sends a POST request with the quantity data to the Shopranos API, and processes the response and potential errors. The function returns a structured result indicating the outcome of the import operation.Function Signature:
Parameters:
payload
(Array of quantities):Array<Object>
Return Value:
StatusCode
: The HTTP status code of the response from the Shopranos platform.Content
: The content of the response body from the Shopranos platform, typically containing success or error messages.Object
Function Workflow:
1.
2.
3.
Authorization
header with the Bearer token and x-companyid
header with the company ID from the certificate.payload
is converted to a JSON string and sent in the request body.4.
StatusCode
and Content
from the response.5.
StatusCode
set to "EXCEPTION" and the exception message as the Content
.Example Usage:
Important Considerations:
payload
parameter must be an array of quantity objects formatted according to the Shopranos API requirements.InventoryLevelDTO
id
string | null
Id
productVariantId
string | null
ProductVariantId
productId
string | null
ProductId
companyId
string | null
CompanyId
locationId
string | null
LocationId
quantity
number <double>
Quantity
expectedInventoryLines
array[object (ExpectedInventoryLineDTO) {2}] | null
ExpectedInventoryLines
deliveryDate
string <date-time> | null
DeliveryDate
expectedQuantity
number <double> | null
ExpectedQuantity
updateDate
string <date-time> | null
UpdateDate
_quantityImport
, you can automate the import of quantity data into the Shopranos platform, ensuring that the data is sent securely and that any issues are handled and reported appropriately.Modified at 2024-08-23 08:37:04