_tasksImport
Documentation: _tasksImport
Function
_tasksImport
function is designed to import a batch of task data into the Shopranos platform. It manages authentication, sends a POST request with the task 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 tasks):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 task objects formatted according to the Shopranos API requirements.Task.Api.Features.Tasks.TaskImportDTO
id
string | null
optional
taskType
enum<integer> <int32>
optional
Allowed values:
0123456
subject
string | null
optional
dueDate
string <date-time> | null
optional
completedDate
string <date-time> | null
optional
status
enum<integer> <int32>
optional
Allowed values:
01
priorityId
string | null
optional
assignedToId
string | null
optional
assignedToType
enum<integer> <int32>
optional
Allowed values:
01
contactIds
array[string] | null
optional
contactType
enum<integer> <int32>
optional
Allowed values:
01
relatedToId
string | null
optional
relatedToType
enum<integer> <int32>
optional
Allowed values:
012
taskSubTypeId
string | null
optional
comments
string | null
optional
editorBody
string | null
optional
reminderSet
boolean | null
optional
position
integer <int32> | null
optional
parentId
string | null
optional
lastModifiedBy
string | null
optional
_tasksImport
, you can automate the import of task 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:19:52