get_result

fireopal.get_result(action_id)

Retrieve the result of a previously submitted action, blocking for completion if the action is still in progress.

Parameters

action_id (int or str) – The unique identifier associated with the action. You can retrieve this value from the activity monitor.

Returns

dict[str, Any] – The action result. The shape of this dictionary will be the same as that of the result returned from the function that was previously called to create this action.

Return type

dict[str, Any]

Was this useful?