How to I access a failure dump of an action within a process using the API

I understand I can get an import's failure dump if I run the import, then get the task id, then construct a url: https://api.anaplan.com/2/0/workspaces/{WorkspaceId}/models/{ModelId}/imports/{ImportId}/tasks/{TaskId}/dump .

My issue is that i'm running a process, which runs a number of imports. One of which has a failure dump. I have the ProcessId, and TaskId of the task that ran the process, however it's not the process that has a failure dump, it's the import within that, so I can't work out the correct url.

I've tried things like "https://api.anaplan.com/2/0/workspaces/{WorkspaceId}/models/{ModelId}/processes/{ProcessId}/tasks/{TaskId}/dump" , however I just get a 404, presumably because the process itself doesn't have a dump available.

Best Answer

Answers