Which TWO actions are valid for handling errors in a Flow Designer integration action? (Choose two.)
Trap 1: Return a specific error code as a flow variable.
Error handling is done via error blocks, not return variables directly.
Trap 2: Send an email notification to the system administrator using a…
While possible via a separate notification step, the action itself does not send email; you would add a subsequent action.
Trap 3: Set the action to automatically retry on failure without…
Retry must be explicitly configured; there is no automatic retry.
- A
Configure the action to log error details to a local log table.
Logging errors to a table is a common pattern.
- B
Use an 'if' condition to check the HTTP status and branch accordingly.
Checking status code allows conditional error handling.
- C
Return a specific error code as a flow variable.
Why wrong: Error handling is done via error blocks, not return variables directly.
- D
Send an email notification to the system administrator using a notification action.
Why wrong: While possible via a separate notification step, the action itself does not send email; you would add a subsequent action.
- E
Set the action to automatically retry on failure without configuration.
Why wrong: Retry must be explicitly configured; there is no automatic retry.