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

# Show WhatsApp flow by ID.



## OpenAPI

````yaml /openapi/chat-client.yaml get /whatsapp/flows/{id}
openapi: 3.0.3
info:
  version: 1.0.0
  title: HealviChat Client API
servers:
  - url: https://{tenant_domain}/third-party/v1
    variables:
      tenant_domain:
        default: your-tenant.onhealvi.com
        description: Your tenant domain
security:
  - bearerAuth: []
paths:
  /whatsapp/flows/{id}:
    get:
      tags:
        - whatsapp
      summary: Show WhatsApp flow by ID.
      parameters:
        - in: path
          name: id
          schema:
            type: integer
          required: true
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/WhatsappFlow'
components:
  schemas:
    WhatsappFlow:
      description: Flow submitted to WhatsApp for approval.
      type: object
      properties:
        id:
          type: integer
          description: Internal ID.
        agent_ids:
          description: |
            Array of agent IDs which are capable to send this flow.
          type: array
          items:
            type: integer
        group:
          description: >-
            Custom group name. Can be null or any value. Useful for filtering
            when fetching all templates.
          type: string
          nullable: true
        flow_id:
          description: WhatsApp internal ID.
          type: string
        namespace:
          description: WhatsApp internal namespace.
          type: string
        name:
          description: Name of flow.
          type: string
        categories:
          type: array
          items:
            type: string
            example: LEAD_GENERATION
        status:
          type: string
          example: PUBLISHED
        json:
          type: string
          description: Actual JSON config of the flow.
        preview_url:
          type: string
          description: Public URL to display or embed the flow preview.
        preview_expires_at:
          type: string
          format: date-time
          nullable: true
          example: '2023-01-01T12:00:00Z'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````