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

# Get Transaction Flowchart

Returns the full event chain for a transaction. Shows the complete sequence of events from the initial click through conversion, post- conversion events, and postback firings. Useful for debugging attribution and tracking flows.


## OpenAPI

````yaml openapi/reporting-transactions.yaml get /networks/reporting/transactions/{transactionId}/flowchart
openapi: 3.0.3
info:
  title: Everflow Network API - Transaction Reporting
  description: >
    Transaction-level reporting endpoints for the Everflow partner marketing
    platform. View transaction overviews and flowcharts.
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Reporting
    description: Transaction reporting endpoints.
paths:
  /networks/reporting/transactions/{transactionId}/flowchart:
    get:
      tags:
        - Reporting
      summary: Get Transaction Flowchart
      parameters:
        - in: path
          name: transactionId
          required: true
          schema:
            type: string
          description: The transaction ID to retrieve the flowchart for.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  clicks:
                    type: array
                    description: Click events associated with this transaction.
                    items:
                      type: object
                      properties:
                        transaction_id:
                          type: string
                        unix_timestamp:
                          type: integer
                        network_offer_id:
                          type: integer
                        network_advertiser_id:
                          type: integer
                        network_affiliate_id:
                          type: integer
                        currency_id:
                          type: string
                        error_code:
                          type: integer
                          description: |
                            Error code for the click. `0` means no error.
                        referrer:
                          type: string
                        is_view_through:
                          type: boolean
                        payout_type:
                          type: string
                        revenue_type:
                          type: string
                        payout:
                          type: number
                          format: double
                        revenue:
                          type: number
                          format: double
                        relationship:
                          type: object
                          properties:
                            internal_redirect_count:
                              type: integer
                  conversions:
                    type: array
                    description: Conversion events associated with this transaction.
                    items:
                      type: object
                      properties:
                        transaction_id:
                          type: string
                        conversion_id:
                          type: string
                        unix_timestamp:
                          type: integer
                        status:
                          type: string
                          enum:
                            - approved
                            - rejected
                            - pending
                        currency_id:
                          type: string
                        payout:
                          type: number
                          format: double
                        revenue:
                          type: number
                          format: double
                        sale_amount:
                          type: number
                          format: double
                        event_name:
                          type: string
                          description: The event name if this is a post-conversion event.
                        is_scrub:
                          type: boolean
                        network_advertiser_global_event_id:
                          type: integer
                        network_offer_payout_revenue_id:
                          type: integer
                        network_custom_payout_revenue_setting_id:
                          type: integer
                        error_code:
                          type: integer
                          description: |
                            Error code for the conversion. `0` means no error.
                        coupon_code:
                          type: string
                        email:
                          type: string
                        payout_type:
                          type: string
                        revenue_type:
                          type: string
                        relationship:
                          type: object
                          properties:
                            attribution_method:
                              type: string
                              description: >-
                                How the conversion was attributed (e.g.
                                `transaction_id`).
                            advertiser_event:
                              type: object
                              description: Advertiser event details (if applicable).
                            offer_payout_revenue:
                              type: object
                              description: Offer payout/revenue configuration used.
                            custom_payout_revenue_setting:
                              type: object
                              description: >-
                                Custom payout/revenue setting used (if
                                applicable).
                            on_hold:
                              type: object
                              description: On-hold status details (if applicable).
                              properties:
                                on_hold_conversion_id:
                                  type: string
                                holding_period_end:
                                  type: integer
                                status:
                                  type: string
                            network_coupon_code_id:
                              type: integer
                  pixel_logs:
                    type: array
                    description: Postback/pixel firing logs for this transaction.
                    items:
                      type: object
                      properties:
                        conversion_id:
                          type: string
                        unix_timestamp:
                          type: integer
                        is_success:
                          type: boolean
                        pixel_id:
                          type: integer
                        relationship:
                          type: object
      security:
        - API Key: []
components:
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````