Can anyone help me with the following? Within a servlet, I have gotten the id f

Can anyone help me with the following? Within a servlet, I have gotten the id for a task. I'd now like to automatically accept/assign that task for the logged in user. I'm having trouble finding how to do this in the public API. Any help is appreciated! Thanks!

OriginalPostID-137188

OriginalPostID-137188

  Discussion posts and replies are publicly visible

Parents
  • You may not be able to 'accept' the task on behalf of a user, but what you can do is perform a redirect to the task URL. Every task comes up with a URL that can be constructed based on the taskId.
    Http(s)://yourhost:port/suite/tempo/tasks/task/{taskId}
    When you redirect the response, then the user will be able to see the task (and accept it if he has the correct privileges)
Reply
  • You may not be able to 'accept' the task on behalf of a user, but what you can do is perform a redirect to the task URL. Every task comes up with a URL that can be constructed based on the taskId.
    Http(s)://yourhost:port/suite/tempo/tasks/task/{taskId}
    When you redirect the response, then the user will be able to see the task (and accept it if he has the correct privileges)
Children
No Data