Skip to main content

List all output assets for a flow

This endpoint provides an overview of all output assets. The output assets are available as soon as the flow has completed / aborted / failed. When calling this route on a created or still running / aborting flow, an error is returned. The individual output assets can be downloaded via the next route (GET /{flow_id}/output/{asset_id})

Endpoint

GET https://flows.generio.ai/flows/{flow_id}/outputs

Parameters

flow_id (required)

  • Location: path
  • Type: string

include_data (optional)

Whether to include the data of the assets.

  • Location: query
  • Type: string
  • Default: false

Code Examples

Copy and run these examples in your terminal or code editor. Make sure to replace YOUR_TOKEN with your actual authentication token.

curl -X GET "https://flows.generio.ai/flows/{flow_id}/outputs" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json"