Question
Can you please let us know the steps to close the DCR after the action is taken?
Answer
Use the external reviewer credential (since that user would be the assignee of the task) to get the token and use that token to perform the action on the "queue task" to mark it as completed.
curl --location --request POST 'https://<workflow_environment>-workflow.reltio.com/workflow-adapter/workflow/<tenantId>/tasks/_action' \
--header 'Authorization: Bearer 8ae90abd-00a5-43ae-9c72-970402b5d2cf' \
--header 'Content-Type: application/json' \
--header 'EnvironmentURL: https://<envirnoment>.reltio.com' \
--data-raw '{"action": "Complete"}'
Comments
Please sign in to leave a comment.