/
DZW - How to Create Task from Digizuite
DZW - How to Create Task from Digizuite
Using the Digizuite automation engine, it is easy to create a task with an asset directly from the Digizuite.
Pre-requisites:
R&D to configure client in integration broker
Provide what Folder in Wrike where assets must be created.
What Title and Description must be created.
A metadata field in DAM for the Task ID (so that one can see the wrike task ID from the asset in DAM).
Automation Example:
trigger "Uploaded" {
type = "Location State Changed"
resolves = "Set String Metafield"
new_location_state = "online"
upload_computer = "Digizuite Media Manager"
ignore_derived_assets = "true"
ignore_replaced_assets = "true"
}
action "Invoke Endpoint" {
type = "Invoke Endpoint"
endpoint = "https://dgz-integration-broker.azurewebsites.net/api/integrations/asset/invoke?clientId={CLIENT_ID}&integrationType=WrikeTaskService&assetId=@sourceAssetId&code={UNIQUE_AUTH_CODE}"
method = "post"
response = "@response"
}
action "Set String Metafield" {
type = "Set String Metafield"
needs = "Query JSON"
meta_field = "guid:c8bb4af3-1598-4ea4-8d7a-98d54eead977"
new_value = "Wrike Task ID: @resultJson"
asset_item_ids = "@sourceAssetItemId"
}
action "Query JSON" {
type = "Query JSON"
needs = "Invoke Endpoint"
json = "@response"
json_path = "$.result"
error_on_not_found_items = "false"
result = "@resultJson"
}
, multiple selections available,
Related content
DZW - How to publish Asset from the task to DAM
DZW - How to publish Asset from the task to DAM
More like this
DZW - How to attach Asset from DAM to the task
DZW - How to attach Asset from DAM to the task
More like this
DC 5.3.0 4.10 Automation Workflows
DC 5.3.0 4.10 Automation Workflows
More like this
DC 6.0 Recommended post setup configuration
DC 6.0 Recommended post setup configuration
More like this