Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Using Browsers Development Tools

...

On success this results in a JSON containing the deleted task.

Trigger manually a workflow action for a task

In special cases some workflow actions have to been triggered manually via POST.

For Details and Configuration see the Notes about Workflow Actions.

Calling the below request will trigger the notifyAllUsers notification which sends an E-Mail to all associated proofreading users.

For the request the TASKID is needed, and the authenticated API user have at least the role "pm".

Code Block
curl 'https://www.translate5.net/editor/task/TASKID/workflow' -X DELETE -H 'Cookie: zfExtended=HERE_WILL_BE_YOUR_SESSION_ID_THEN' \ 
    -H 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8' \
    -H 'Accept: application/json' --data 'trigger=notifyAllUsersAboutTaskAssociation' --compressed