Skip to main content

List all uploaded input files for a flow

This endpoint allows to get an overview of all uploaded input files for a specific 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

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"