POST
/
api
/
v2
/
execute
/
log
/
{execution_log_id}
/
rate

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

execution_log_id
string
required

Query Parameters

rating
integer | null
feedback
string | null

Response

200 - application/json
action_used
string
required

The name of the action that was executed.

execution_log_id
string
required

ID of the execution log.

This can be used with the Rate Execution Log endpoint to give feedback on the execution.

We frequently monitor this feedback!

input_params
object
required

The parameters that were passed into the API.

error
string | null

The error message if the execution failed.

full_results
object[] | null

DEPRECATED: Use results instead. This field is kept temporarily for compatibility.

resolved_params
object | null

The resolved parameters for the action.

If preview_only is true, this will be the parameters that the AI would have used to run the action if it were not a preview. If preview_only is false, these are the parameters that the AI used to run the action.

result_field_labels
object | null

Human readable labels for some of the keys in the result.

results
object[] | null

Results of the action after it ran.

This will be an empty list if preview_only is true.

status
enum<string>
default:
success

The status of the execution.

  • success: The action was executed successfully.
  • halted: The action was not executed.
  • error: The action failed to execute, see error field.
  • empty: The action search did not return any results.
  • preview: The action was previewed.
Available options:
success,
halted,
error,
empty,
preview