> ## 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.

# Search Reporting Adjustments

Returns a list of reporting adjustments. Adjustments are manual corrections applied to reporting data, such as revenue or conversion count modifications.


## OpenAPI

````yaml openapi/reporting-adjustments.yaml get /networks/reportingadjustments
openapi: 3.0.3
info:
  title: Everflow Network API - Adjustment and Refund Reporting
  description: >
    Reporting adjustment and refund endpoints for the Everflow partner marketing
    platform. For more detail, see [Performance Data
    Adjustments](https://helpdesk.everflow.io/customer/performance-data-adjustments-clicks-conversions-revenue-payout)
    in the Help Center.
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Reporting
    description: Adjustment and refund reporting endpoints.
paths:
  /networks/reportingadjustments:
    get:
      tags:
        - Reporting
      summary: Get Reporting Adjustments
      parameters:
        - in: query
          name: from
          required: true
          schema:
            type: string
          description: Start date in YYYY-MM-DD format. Uses the network's timezone.
        - in: query
          name: to
          required: true
          schema:
            type: string
          description: End date in YYYY-MM-DD format. Uses the network's timezone.
        - in: query
          name: timezone_id
          required: false
          schema:
            type: integer
          description: Timezone ID for the report. Defaults to the network's timezone.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  adjustments:
                    type: array
                    items:
                      type: object
                      properties:
                        network_reporting_adjustment_id:
                          type: integer
                        network_id:
                          type: integer
                        network_affiliate_id:
                          type: integer
                        network_offer_id:
                          type: integer
                        network_employee_id:
                          type: integer
                        total_clicks:
                          type: integer
                        unique_clicks:
                          type: integer
                        conversions:
                          type: integer
                        payout:
                          type: number
                        revenue:
                          type: number
                        date_adjustment:
                          type: string
                        notes:
                          type: string
                        gross_sales:
                          type: number
                        impressions:
                          type: integer
                        media_buying_cost:
                          type: number
                        time_created:
                          type: integer
                          example: 1734455015
                        time_saved:
                          type: integer
                          example: 1734455015
                        deleted:
                          type: boolean
                        relationship:
                          type: object
                          properties:
                            snapshot:
                              type: object
                              properties:
                                network_reporting_adjustment_id:
                                  type: integer
                                network_id:
                                  type: integer
                                network_affiliate_id:
                                  type: integer
                                network_offer_id:
                                  type: integer
                                total_clicks:
                                  type: integer
                                unique_clicks:
                                  type: integer
                                conversions:
                                  type: integer
                                payout:
                                  type: number
                                revenue:
                                  type: number
                                event_revenue:
                                  type: number
                                gross_sales:
                                  type: number
                                impressions:
                                  type: integer
                                media_buying_cost:
                                  type: number
                                snapshot_timestamp:
                                  type: integer
                                snapshot_date:
                                  type: string
                                time_created:
                                  type: integer
                                  example: 1734455015
      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

````