_attributesImport
Documentation: _attributesImport
Function
_attributesImport
function is designed to import a batch of attribute data into the Shopranos platform. It manages authentication, sends a POST request with the attribute data to the Shopranos API, and handles responses and errors. The function returns a structured result indicating the outcome of the import operation.Function Signature:
Parameters:
payload
(Array of attributes):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 attribute objects formatted according to the Shopranos API requirements.Catalog.Api.Features.Attributes.AttributeDTO
id
string | null
Id
companyId
string | null
CompanyId
name
string
Name
>= 0 characters<= 150 characters
code
string
Code
>= 1 characters
description
string | null
Description
usedAsFilter
boolean | null
UsedAsFilter
displayOnProduct
boolean | null
DisplayOnProduct
displayOnList
boolean | null
DisplayOnList
displayOnCompare
boolean | null
DisplayOnCompare
type
enum<string> | enum<null>
Type
Allowed values:
TextItemsColorSize
slug
string | null
Slug
position
integer <int32> | null
Position
status
enum<string> | enum<null>
Status
Allowed values:
DraftActiveArchivedignore
updateDate
string <date-time> | null
UpdateDate
insertDate
string <date-time> | null
InsertDate
items
array[object (Catalog.Api.Features.Attributes.AttributeItemDTO) {7}] | null
Items
id
string | null
Id
code
string | null
Code
colorCode
string | null
ColorCode
value
string | null
Value
position
integer <int32> | null
Position
slug
string | null
Slug
translation
null | allOf {1}
Translation
translation
null | allOf {1}
Translation
object (Catalog.Api.Features.Attributes.AttributeTranslationDTO)
optional
_attributesImport
, you can automate the import of attribute 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:08:03