ExecuteActionResult

Minimal information about an action result.

JSON representation
{
  "integration": string,
  "displayName": string,
  "message": string,
  "executionTimeSeconds": number,
  "entityId": string,
  "resultJson": string,
  "resultEntitiesDelta": string,
  "resultValue": string,
  "status": enum (ActionStatus),
  "actionResultId": string
}
Fields
integration

string

Output only. The integration.

displayName

string

Output only. The action display name.

message

string

Output only. The message.

executionTimeSeconds

number

Output only. The execution time of the action in seconds.

entityId

string

Output only. The entity identifier.

resultJson

string

Output only. The result JSON object.

resultEntitiesDelta

string

Output only. The result entities JSON object.

resultValue

string

Output only. The result value.

status

enum (ActionStatus)

Output only. The status of the action.

actionResultId

string (int64 format)

Output only. The identifier of the action result.

ActionStatus

Status of an action execution.

Enums
ACTION_STATUS_UNSPECIFIED Unspecified action status.
FAULTED Faulted.
ASYNC_PENDING In progress.
COMPLETED Completed.
PENDING_USER_INPUT Pending user input.
PENDING_PREVIOUS_STEPS Pending previous steps.
STARTED Started.
FAULTED_AND_SKIPPED Faulted and skipped.
HANDLED_TIMEDOUT Handled timed out.
UNHANDLED_TIMEDOUT Unhandled timed out.
TERMINATED Terminated.
NOT_RUN_AND_SKIPPED Not run and skipped.
PENDING_ACTION_TIMEOUT Pending action got timeout, the playbook stopped.
PENDING_ACTION_TIMEOUT_AND_SKIPPED Pending action timeout and skipped.
PENDING_RETRY Pending action retry.