_contactsImport
Documentation: _contactsImport
Function
_contactsImport
function is designed to import a batch of contact data into the Shopranos platform. It manages authentication, sends a POST request with the contact 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 contacts):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 contact objects formatted according to the Shopranos API requirements.Customer.Api.Features.Contacts.ContactImportDTO
ownerId
string | null
OwnerId
accountIds
array[string] | null
AccountIds
sourceId
string | null
SourceId
sourceOwnerId
string | null
SourceOwnerId
sourceAccountIds
array[string] | null
SourceAccountIds
name
null | allOf {1}
Name
object (Customer.Api.Features.Contacts.NameDTO)
optional
email
string | null
Email
phone
string | null
Phone
mobilePhone
string | null
MobilePhone
fax
string | null
Fax
callOptOut
boolean | null
CallOptOut
emailOptOut
boolean | null
EmailOptOut
otherEmail
array[object (Customer.Api.Features.Contacts.EmailDTO) {3}] | null
OtherEmail
emailAddress
string | null
EmailAddress
type
enum<string>
Type
Allowed values:
WorkHomeOtherignore
optOut
boolean
OptOut
otherPhone
array[object (Customer.Api.Features.Contacts.PhoneDTO) {3}] | null
OtherPhone
phoneNumber
string | null
PhoneNumber
type
enum<string>
Type
Allowed values:
WorkHomeOtherignore
optOut
boolean
OptOut
jobTitle
string | null
JobTitle
genderId
string | null
GenderId
pronounceId
string | null
PronounceId
address
null | allOf {1}
Address
object (Customer.Api.DTOs.AddressDTO)
optional
createdBy
string | null
CreatedBy
lastModifiedBy
string | null
LastModifiedBy
department
string | null
Department
reportsTo
string | null
ReportsTo
assistant
string | null
Assistant
assistantPhone
string | null
AssistantPhone
birthday
string <date-time> | null
Birthday
description
string | null
Description
lastStayInTouchReportedDate
string <date-time> | null
LastStayInTouchReportedDate
lastStayInTouchSaveDate
string <date-time> | null
LastStayInTouchSaveDate
accountSourceTypeId
string | null
AccountSourceTypeId
extraFields
object | null
ExtraFields
Additional properties
integer | number | string | boolean
optional
id
string | null
Id
_contactsImport
, you can automate the import of contact 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:04:12