_customersImport
Documentation: _customersImport
Function
_customersImport
function is designed to import a batch of customer data into the Shopranos platform. It handles authentication, sends a POST request with the customer 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 customers):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 customer objects formatted according to the Shopranos API requirements.Customer.Api.Features.Customers.CustomerImportDTO
id
string | null
Id
companyId
string | null
CompanyId
code
string | null
Code
name
string | null
Name
tin
string | null
Tin
email
string | null
Email
phone
string | null
Phone
priceCategoryId
string | null
PriceCategoryId
sourceId
string | null
SourceId
tags
array[string] | null
Tags
sourceTags
array[string] | null
SourceTags
address
null | allOf {1}
Address
object (Customer.Api.DTOs.AddressDTO)
optional
notes
string | null
Notes
status
enum<string> | enum<null>
Status
Allowed values:
ActiveInactiveStopOrderignore
branches
array[object (Customer.Api.Features.Customers.CustomerBranchDTO) {11}] | null
Branches
id
string | null
Id
sourceId
string | null
SourceId
code
string | null
Code
name
string | null
Name
phone
string | null
Phone
address
null | allOf {1}
Address
vatType
enum<string> | enum<null>
VatType
Allowed values:
ZeroRegularDiscountedignore
status
enum<string> | enum<null>
Status
Allowed values:
ActiveInactiveStopOrderignore
contactLanguage
string | null
ContactLanguage
paymentProviderId
string | null
PaymentProviderId
carrierId
string | null
CarrierId
additionalFeatures
null | allOf {1}
AdditionalFeatures
object (Customer.Api.Features.Customers.CustomerAdditionalFeaturesDTO)
optional
customFields
array[object (Customer.Api.Features.Customers.CustomerCustomFieldDTO) {3}] | null
CustomFields
name
string | null
Name
value
null
Value
translation
null | allOf {1}
Translation
updateDate
string <date-time> | null
UpdateDate
insertDate
string <date-time> | null
InsertDate
taxOffice
string | null
TaxOffice
contactLanguage
string | null
ContactLanguage
vatType
enum<string> | enum<null>
VatType
Allowed values:
ZeroRegularDiscountedignore
shopType
enum<integer> <int32> | enum<null>
ShopType
Allowed values:
012-1
logo
string | null
Logo
paymentProviderId
string | null
PaymentProviderId
carrierId
string | null
CarrierId
address1
string | null
Address1
address2
string | null
Address2
>= 0 characters<= 100 characters
city
string | null
City
>= 0 characters<= 60 characters
state
string | null
State
>= 0 characters<= 50 characters
country
string | null
Country
>= 0 characters<= 55 characters
latitude
string | null
Latitude
longtitude
string | null
Longtitude
countryCode
string | null
CountryCode
postalCode
string | null
PostalCode
>= 0 characters<= 15 characters
_customersImport
, you can automate the import of customer 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 09:03:19