Hello,
I want to use getResult
via REST API but there I need the operation id. My goal is, to get all available operation ids to check the getResult
. How can I do that?
Hello,
I want to use getResult
via REST API but there I need the operation id. My goal is, to get all available operation ids to check the getResult
. How can I do that?
The Data Mapping, Content Creation, Job Creation and Output Creation services all have an endpoint (Get All Operations) to obtain the list of currently running operations.
So you can get those lists of operations and loop through each ID to get the result of operation.
Ok, I got that. But how about not currently running operations? Is there any way to get informations about these jobs? I want to create a summary of jobs per day. Do I have to track the whole day and collect the informations for the evening?
No. You’d have to implement your own tracking system. You could store the values in Workflow’s repository, but you have to make sure to clean them up from time to time.
Ok, thanks. Thats what I expected.