Force task execution parameters

I'm trying to use the gateway API to run an EAM function, specifically eam-tasks > force task execution. The link to the docs for this function is here:
http://yourgateway:/openapi#tag/eam-tasks/paths/~1data~1eam~1api~1v1~1eam-tasks~1force~1{owner}~1{name}/post

I have been experimenting with a few different "owner" parameter values (eam-tasks, gatewaynetwork, etc), looking through the rest of the API documentation to find other instances of "owners" or "systems", and trying some get functions to see if those would return examples of that parameter, but I can't seem to find values that should be supplied here.

The name parameter is pretty self-explanatory - it's just owner that's giving me some issues.

A quick examination of the codebase suggests the only value which would work for your use-case is "eam". The param is apparently not just hard-coded as "eam" because it's intended to be extensible. Unfortunately, that doesn't become clear until there are other locations which use it and document the same pattern.

So your usage would collapse into something like this:

/data/eam/api/v1/eam-tasks/force/eam/{name}