> ## 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 Tiered Commissions (Advanced)

Retrieve a paginated list of tiered commission configurations. Supports search filters, sorting, and pagination to help you find and browse tiered commission rules and their payout structures programmatically. This endpoint supports accept query filters.


## OpenAPI

````yaml openapi/tiered-commissions.yaml post /networks/tieredcommissions/table
openapi: 3.0.3
info:
  title: Everflow Network API - Tiered Commissions
  description: >
    Endpoints for managing tiered commission structures. Tiered commissions
    automatically adjust partner payouts or revenue based on performance metrics
    like conversion count, sales volume, or revenue thresholds within specified
    time periods. For setup, see the [Tiered Commissions
    guide](https://helpdesk.everflow.io/customer/tiered-commissions).
  version: 1.0.0
servers:
  - url: https://api.eflow.team/v1
security: []
tags:
  - name: Tiered Commissions
paths:
  /networks/tieredcommissions/table:
    post:
      tags:
        - Tiered Commissions
      summary: Find Tiered Commissions (Advanced)
      parameters:
        - in: query
          name: page
          schema:
            type: integer
            default: 1
          description: Page number (1-based).
        - in: query
          name: page_size
          schema:
            type: integer
            default: 50
          description: Number of results per page.
      requestBody:
        content:
          application/json:
            example:
              search_terms:
                - search_type: name
                  value: Silver
              filters:
                network_affiliate_ids:
                  - 21
                network_offer_ids:
                  - 4
                  - 6
                network_advertiser_ids: []
            schema:
              type: object
              properties:
                search_terms:
                  type: array
                  description: Text search filters.
                  items:
                    type: object
                    required:
                      - search_type
                      - value
                    properties:
                      search_type:
                        type: string
                        description: >-
                          The name of the field used for search. Only "name" is
                          supported.
                        example: name
                      value:
                        type: string
                        description: The value to search.
                        example: Silver
                filters:
                  type: object
                  description: Structured filters to narrow results.
                  properties:
                    network_affiliate_ids:
                      type: array
                      items:
                        type: integer
                      description: ID of the Affiliates.
                    network_offer_ids:
                      type: array
                      items:
                        type: integer
                      description: ID of the offers.
                    network_advertiser_ids:
                      type: array
                      items:
                        type: integer
                      description: ID of the advertisers.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  commissions:
                    type: array
                    items:
                      $ref: '#/components/schemas/TieredCommissionTableItem'
                  paging:
                    type: object
                    properties:
                      page:
                        type: integer
                      page_size:
                        type: integer
                      total_count:
                        type: integer
      security:
        - API Key: []
components:
  schemas:
    TieredCommissionTableItem:
      type: object
      description: >
        A tiered commission as returned by the table/list endpoint. This is a
        subset of the full TieredCommission schema — it omits retroactive
        fields, network_affiliate_ids, network_offer_ids, and
        network_advertiser_ids.
      properties:
        network_tiered_commission_id:
          type: integer
          description: Unique tiered commission ID.
        network_id:
          type: integer
          description: Network ID.
        name:
          type: string
          description: The name of the tiered commission.
        notes:
          type: string
          description: Note for internal usage.
        status:
          type: string
          description: The tiered commissions status.
          enum:
            - active
            - inactive
        start_date:
          type: string
          description: Start of when rule goes into effect.
        end_date:
          type: string
          description: End of when rule goes into effect.
        period:
          type: string
          description: The tiered commissions period.
          enum:
            - daily
            - weekly
            - monthly
            - quarterly
            - global
        network_offer_payout_revenue_id:
          type: integer
          description: ID of the offer payout revenue.
        is_apply_all_affiliates:
          type: boolean
          description: Whether the tiered commission applies to all affiliates.
        is_payout_enabled:
          type: boolean
          description: Whether payout settings are enabled.
        payout_action:
          type: string
          description: Type of payout action.
          enum:
            - increase
            - decrease
            - flat_increase
            - flat_decrease
            - unknown
        payout_value:
          type: number
          description: The payout modifier value.
        is_revenue_enabled:
          type: boolean
          description: Whether revenue settings are enabled.
        revenue_action:
          type: string
          description: Type of revenue action.
          enum:
            - increase
            - decrease
            - flat_increase
            - flat_decrease
            - unknown
        revenue_value:
          type: number
          description: The revenue modifier value.
        payout_goal:
          type: integer
          description: The payout goal.
        revenue_goal:
          type: integer
          description: The revenue goal.
        sale_amount_goal:
          type: integer
          description: The sale amount goal.
        conversion_goal:
          type: integer
          description: The conversion goal.
        event_goal:
          type: integer
          description: The event goal.
        relationship:
          type: object
          description: Related entities. Always returns an empty object `{}`.
        payout_max:
          type: integer
          description: The maximum payout allowed.
        revenue_max:
          type: integer
          description: The maximum revenue allowed.
        sale_amount_max:
          type: integer
          description: The maximum sale amount allowed.
        conversion_max:
          type: integer
          description: The maximum conversions allowed.
        event_max:
          type: integer
          description: The maximum events allowed.
        time_created:
          type: integer
          example: 1734455015
          description: Unix timestamp of creation.
        time_saved:
          type: integer
          example: 1734455015
          description: Unix timestamp of last update.
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````