Method: Auth0::Api::V2::Actions#execution
- Defined in:
- lib/auth0/api/v2/actions.rb
permalink #execution(execution_id) ⇒ json Also known as: get_execution
Retrieve information about a specific execution of a trigger.
94 95 96 97 98 |
# File 'lib/auth0/api/v2/actions.rb', line 94 def execution(execution_id) raise Auth0::MissingExecutionId, 'Must supply a valid execution_id' if execution_id.to_s.empty? path = "#{actions_path}/executions/#{execution_id}" get(path) end |