> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chatbridge.algosmiths.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List submissions for a Flow

> Pure local read, no Meta call. Capped at 100 rows.



## OpenAPI

````yaml /openapi.json get /api/v1/flows/{flow_id}/submissions/
openapi: 3.0.3
info:
  title: ChatBridge Public API
  version: 1.0.0
  description: >-
    Customer-facing REST API for ChatBridge — contacts, conversations, messages,
    templates, team, catalogue, tickets, and WhatsApp Flows. Authenticate with a
    workspace API key: `Authorization: Bearer cb_...`. See
    https://github.com/algosmiths/whatschat/blob/main/public_api.md for the full
    scope/versioning reference.
servers:
  - url: https://api.algosmiths.com
    description: Production
security: []
paths:
  /api/v1/flows/{flow_id}/submissions/:
    get:
      tags:
        - Flows
      summary: List submissions for a Flow
      description: Pure local read, no Meta call. Capped at 100 rows.
      operationId: flows_submissions_retrieve
      parameters:
        - in: path
          name: flow_id
          schema:
            type: string
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FlowSubmissionsResponse'
          description: ''
      security:
        - ApiKeyAuth: []
        - tokenAuth: []
        - CookieAuth: []
components:
  schemas:
    FlowSubmissionsResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/FlowSubmission'
      required:
        - data
    FlowSubmission:
      type: object
      properties:
        id:
          type: integer
          readOnly: true
        meta_flow_id:
          type: string
          maxLength: 64
        flow_token:
          type: string
          maxLength: 512
        receiver:
          type: integer
        receiver_name:
          type: string
          readOnly: true
        flow:
          type: integer
          nullable: true
        flow_name:
          type: string
          readOnly: true
        chat:
          type: integer
          nullable: true
        response_json: {}
        screen_id:
          type: string
          maxLength: 255
        created_at:
          type: string
          format: date-time
          readOnly: true
      required:
        - created_at
        - flow_name
        - id
        - meta_flow_id
        - receiver
        - receiver_name
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      bearerFormat: cb_...
      description: >-
        Workspace API key, e.g. `Authorization: Bearer cb_live_...`. Create one
        in Settings → API Keys. See public_api.md § 3 for scopes.
    tokenAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Token-based authentication with required prefix "Token"
    CookieAuth:
      type: apiKey
      in: cookie
      name: token
      description: Dashboard session cookie — internal use only, not the public contract.

````