Skip to main content

List all input assets for a flow

Get an overview of all uploaded input assets for a specific flow.

Query Parameters:

  • include_data: Boolean flag to include or exclude the actual file data in the response
    • true: Returns full data URIs (base64-encoded) - use for downloading/viewing inputs
    • false (default): Returns only metadata - use for listing/overview

Response includes:

  • Asset ID for each input
  • File status (available, processing, error)
  • Processing status (whether input has been processed)
  • Additional custom metadata attached to each input
  • File data (if include_data=true)

Use Cases:

  • Verify all required inputs have been uploaded
  • Check input processing status
  • Review input metadata before starting a flow
  • Download original input files for reference
info

This endpoint allows you to list all input assets for a flow.

Endpoint

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

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

Responses

200

Successful Response

422

Validation Error

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}/inputs" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json"