Method: Auth0::Api::V2::Actions#execution

Defined in:
lib/auth0/api/v2/actions.rb

#execution(execution_id) ⇒ json Also known as: get_execution

Retrieve information about a specific execution of a trigger.

Parameters:

  • execution_id (string)

    The ID of the exeution to retrieve.

Returns:

  • (json)

    Returns the action with the given execution_id if it exists.

Raises:

See Also:

[View source]

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