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

# Find Adjustments (Advanced)

Retrieve a paginated list of reporting adjustments. Supports search filters, sorting, and pagination to help you find and browse adjustments programmatically.

Pagination is controlled through the `page` and `page_size` **query parameters**, not the JSON request body. For example, `?page=2&page_size=100` returns the second page of 100 results.


## OpenAPI

````yaml openapi/reporting-adjustments.yaml post /networks/reportingadjustments/table
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/table:
    post:
      tags:
        - Reporting
      summary: Find Adjustments (Advanced)
      parameters:
        - in: query
          name: page
          required: false
          schema:
            type: integer
            minimum: 1
            default: 1
          description: The page of results to retrieve.
        - in: query
          name: page_size
          required: false
          schema:
            type: integer
            minimum: 1
            default: 50
          description: The number of results to return per page.
      requestBody:
        required: true
        content:
          application/json:
            example:
              from: '2025-01-01'
              to: '2025-01-31'
              timezone_id: 67
              query:
                filters:
                  - resource_type: offer
                    filter_id_value: '880'
                search_terms: []
            schema:
              type: object
              required:
                - from
                - to
              properties:
                from:
                  type: string
                  description: 'Start date (format: YYYY-MM-DD).'
                to:
                  type: string
                  description: 'End date (format: YYYY-MM-DD).'
                timezone_id:
                  type: integer
                  description: Timezone ID for the report.
                query:
                  type: object
                  properties:
                    filters:
                      type: array
                      items:
                        type: object
                        properties:
                          resource_type:
                            type: string
                            enum:
                              - offer
                              - affiliate
                              - advertiser
                          filter_id_value:
                            type: string
                    search_terms:
                      type: array
                      items:
                        type: object
                        properties:
                          search_type:
                            type: string
                            enum:
                              - notes
                          value:
                            type: string
      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_name:
                          type: string
                        network_offer_name:
                          type: string
                        network_advertiser_name:
                          type: string
                        network_offer_id:
                          type: integer
                        network_affiliate_id:
                          type: integer
                        network_advertiser_id:
                          type: integer
                        network_employee_id:
                          type: integer
                        network_employee_name:
                          type: string
                        total_clicks:
                          type: integer
                        unique_clicks:
                          type: integer
                        conversions:
                          type: integer
                        payout:
                          type: number
                        revenue:
                          type: number
                        gross_sales:
                          type: number
                        impressions:
                          type: integer
                        media_buying_cost:
                          type: number
                        date_adjustment:
                          type: string
                        notes:
                          type: string
                        currency_id:
                          type: string
                        time_created:
                          type: integer
                          example: 1734455015
                        time_saved:
                          type: integer
                          example: 1734455015
                        deleted:
                          type: boolean
                        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
                  paging:
                    type: object
                    properties:
                      page:
                        type: integer
                      page_size:
                        type: integer
                      total_count:
                        type: integer
      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

````