_usersImport
Documentation: _usersImport
Function
_usersImport
function is designed to import a batch of user data into the Shopranos platform. It handles authentication, sends a POST request with the user 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 users):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 user objects formatted according to the Shopranos API requirements.UserImportRequestModel
settings
object (UserImportSettings)
optional
operation
enum<integer> <int32>
optional
Allowed values:
012-1
users
array[object (UserDto) {21}] | null
optional
id
string | null
optional
email
string | null
optional
firstName
string | null
optional
lastName
string | null
optional
userRole
object (UserRoleDto)
optional
customerRoleId
string | null
optional
isActive
boolean | null
optional
customerId
string | null
optional
insertDate
string <date-time> | null
optional
updateDate
string <date-time> | null
optional
lastLogin
string <date-time> | null
optional
inviteDate
string <date-time> | null
optional
dateOfBirth
string <date-time> | null
optional
profileImage
object (MediaItemDto)
optional
branches
array[string] | null
optional
hasCompanyAccess
boolean | null
optional
hasAllBranchesAccess
boolean | null
optional
addresses
array[object (AddressDto) {11}] | null
optional
storeId
string | null
optional
fullName
string | null
optional
customerMemberships
array[object (CustomerMembershipDto) {5}] | null
optional
_usersImport
, you can automate the import of user 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 11:45:15