Flow Response: Success & Error

Configure success and error responses for your Fastn flow. Customize HTTP response messages and status codes returned when an automation completes.

The Flow Response components control what your flow returns when it finishes. Use Flow Response: Success to define the payload and HTTP status code returned on a successful run, and Flow Response: Error to define what gets returned when the flow encounters a failure. Every API-triggered flow should include both so that callers receive meaningful feedback regardless of the outcome.

Flow Response component with success and error message configuration fields

Example Success Definition

Str Status = "success"  
Str Message = "Order processed"  
Int OrderId = 12345

Example Error Definition

Last updated

Was this helpful?