_categoriesImport
Documentation: _categoriesImport
Function
_categoriesImport
function is designed to import a batch of category data into the Shopranos platform. It handles the necessary authentication, sends a POST request with the category 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 categories):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 category objects formatted according to the Shopranos API requirements.Catalog.Api.Features.Categories.CategoryDTO
id
string | null
Id
companyId
string | null
CompanyId
title
string
Title
>= 1 characters
code
string
Code
>= 1 characters
alias
string | null
Alias
description
string | null
Description
position
integer <int32> | null
Position
displayInMenu
boolean | null
DisplayInMenu
displayAsList
boolean | null
DisplayAsList
parentId
string | null
ParentId
path
string | null
Path
mediaItem
null | allOf {1}
MediaItem
object (Catalog.Application.Shared.DTOs.MediaItemDTO)
optional
translation
null | allOf {1}
Translation
object (Catalog.Api.Features.Categories.CategoryTranslationDTO)
optional
seoTitle
string | null
SeoTitle
seoDescription
string | null
SeoDescription
updateDate
string <date-time> | null
UpdateDate
insertDate
string <date-time> | null
InsertDate
metaTitle
string | null
MetaTitle
metaDescription
string | null
MetaDescription
metaKeywords
array[string] | null
MetaKeywords
treeIds
array[string] | null
TreeIds
link
string | null
Link
status
enum<string> | enum<null>
Status
Allowed values:
DraftActiveArchivedignore
_categoriesImport
, you can automate the import of category 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:12:18