_productsImport
Documentation: _productsImport
Function
_productsImport
function is designed to import a batch of product data into the Shopranos platform. It manages authentication and sends a POST request with the product data to the Shopranos API. The function handles responses and errors, and returns a structured result indicating the outcome of the import operation.Function Signature:
Parameters:
payload
(Array of products):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 product objects formatted according to the Shopranos API requirements.ProductDTO
id
string | null
optional
companyId
string | null
optional
title
string | null
optional
vatRate
number <double> | null
optional
vatCode
string | null
optional
reducedVatCode
string | null
optional
reducedVatRate
number <double> | null
optional
brandId
string | null
optional
status
enum<string>
optional
Allowed values:
DraftActiveArchivedignore
priceCategoryId
string | null
optional
productVariants
array[object (ProductVariantDTO) {7}] | null
optional
id
string | null
optional
productId
string | null
optional
gtin
string | null
optional
mpn
string | null
optional
price
number <double> | null
optional
msrp
number <double> | null
optional
sku
string | null
optional
mediaItems
array[object (MediaItemDTO) {9}] | null
optional
id
string | null
optional
companyId
string | null
read-onlyoptional
galleryId
string | null
optional
link
string | null
optional
position
integer <int32> | null
optional
alt
string | null
optional
mediaType
enum<string>
optional
Allowed values:
ImageVideoAttachmentignore
width
integer <int32> | null
optional
height
integer <int32> | null
optional
categoryId
string | null
optional
tags
array[string] | null
optional
sourceTags
array[string] | null
optional
searchAttributes
array[string] | null
optional
pathCategories
array[string] | null
optional
_productsImport
, you can automate the import of product 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:04:59