Conductor 2.x to 3.x upgrade #2365
-
Hi Team, We have some use case like for aync workflow implementation we use taskRefName to fetch the details of specific task(TaskId)using above api and mark it as success or fail using a callback api. Is there any alternate way we can fetch task details by taskRefName? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You could get the workflow details including tasks using the GET /workflow/{workflowId} API. Alternatively, if you have the taskId, you can get the task details using the GET /tasks/{taskId} API. |
Beta Was this translation helpful? Give feedback.
You could get the workflow details including tasks using the GET /workflow/{workflowId} API. Alternatively, if you have the taskId, you can get the task details using the GET /tasks/{taskId} API.