> ## 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 Partner Postbacks (Advanced)

Retrieve a paginated list of partner postbacks. Supports search filters, sorting, and pagination to help you find and browse postback configurations programmatically.


## OpenAPI

````yaml openapi/partner-postbacks.yaml post /networks/pixelstable
openapi: 3.0.3
info:
  title: Everflow Network API - Partner Postbacks
  description: >
    Endpoints for managing partner postbacks in the Everflow network.


    **Terminology note:** the API uses **`pixel`** for the same entity the
    platform UI calls a **postback** — `pixel_id` (API) and `postback_id` (UI)
    refer to the same record. URL paths use `/networks/pixels/...`.


    For postback setup and testing, see the [Postbacks
    guide](https://helpdesk.everflow.io/customer/introduction-to-partner-advertiser-postbacks).
  version: 1.0.0
servers:
  - url: https://api.eflow.team/v1
security: []
tags:
  - name: Partner Postbacks
paths:
  /networks/pixelstable:
    post:
      tags:
        - Partner Postbacks
      summary: Find Partner Postbacks (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:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                query:
                  $ref: '#/components/schemas/SearchQuery'
            examples:
              active_conversion_postbacks:
                summary: Fetch active conversion postbacks for an offer
                value:
                  query:
                    search_terms: []
                    filters:
                      pixel_type: conversion
                      network_offer_ids:
                        - 11
              event_postbacks_by_method:
                summary: Fetch event postbacks filtered by delivery method
                value:
                  query:
                    search_terms: []
                    filters:
                      delivery_methods:
                        - postback
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  pixels:
                    type: array
                    items:
                      $ref: '#/components/schemas/PartnerPostbackTable'
                  paging:
                    $ref: '#/components/schemas/Paging'
      security:
        - API Key: []
components:
  schemas:
    SearchQuery:
      type: object
      properties:
        search_terms:
          type: array
          description: Text search filters.
          items:
            type: object
            required:
              - search_type
              - value
            properties:
              search_type:
                type: string
                enum:
                  - name
                  - offer
                  - affiliate
                description: The field to search on.
              value:
                type: string
                description: The search value.
        filters:
          type: object
          description: Filter criteria for searching postbacks.
          properties:
            status:
              type: string
              enum:
                - active
                - inactive
              description: Filter by postback status.
            pixel_type:
              type: string
              enum:
                - conversion
                - cpc
                - event
              description: Filter by pixel type (firing trigger).
            network_offer_ids:
              type: array
              items:
                type: integer
              description: >
                Filter by offer IDs. Note that `global` postbacks (that target
                all offers) will also be returned when this filter is used.
            network_affiliate_ids:
              type: array
              items:
                type: integer
              description: >
                Filter by affiliate IDs. Note that global offer postbacks (that
                fire regardless of the partner) will also be returned when this
                filter is used.
            delivery_methods:
              type: array
              items:
                type: string
                enum:
                  - postback
                  - html
                  - facebook
                  - tiktok
                  - snapchat
                  - rumble
              description: Filter by delivery methods.
    PartnerPostbackTable:
      type: object
      description: A partner postback record from the table endpoint (flattened).
      properties:
        network_pixel_id:
          type: integer
          description: Unique partner postback (pixel) ID.
        network_id:
          type: integer
          description: Network ID.
        network_offer_payout_revenue_id:
          type: integer
          description: Event ID (0 for all events).
        delivery_method:
          type: string
          enum:
            - postback
            - html
            - facebook
            - tiktok
            - snapchat
            - rumble
          description: Delivery method.
        pixel_level:
          type: string
          enum:
            - global
            - specific
            - global_offer
          description: Postback scope.
        pixel_status:
          type: string
          enum:
            - active
            - inactive
          description: Postback status.
        pixel_type:
          type: string
          enum:
            - conversion
            - cpc
            - event
          description: Postback type.
        postback_url:
          type: string
          description: Postback URL.
        html_code:
          type: string
          description: HTML pixel code.
        network_affiliate_id:
          type: integer
          description: Associated affiliate ID.
        network_affiliate_name:
          type: string
          description: Associated affiliate name.
        network_offer_id:
          type: integer
          description: Associated offer ID.
        network_offer_name:
          type: string
          description: Associated offer name.
        description:
          type: string
          description: Description.
        delay_ms:
          type: integer
          description: Delay in milliseconds before firing.
        time_created:
          type: integer
          example: 1734455015
          description: Unix timestamp of creation.
        time_saved:
          type: integer
          example: 1734455015
          description: Unix timestamp of last update.
        relationship:
          type: object
          description: Related entities (currently empty for table results).
    Paging:
      type: object
      properties:
        page:
          type: integer
        page_size:
          type: integer
        total_count:
          type: integer
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````