Get Error Message of Assert via Flexible Rest API

Hey everyone,

is it somehow possible to get the error message from a failed assert within a workflow via the flexible rest api processor? I tried the api calls /workflows/{workflowId}/versions/{workflowVersion}/jobs and /workflows/{workflowId}/jobs, but they seem only to return failure/success and not the accompanied error message in the .json file.

Thanks in advance!

You get the job id from the /workflows/{workflowId}/jobs endpoint and with that job id you can get the error messages from the /jobs/{workflowJobId} endpoint.

Solved, thank you Jakob!