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

Retrieve a paginated list of postbacks. Supports search filters, sorting, and pagination to help you find and browse postback configurations 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/affiliate-postbacks.yaml post /affiliates/pixelstable
openapi: 3.0.3
info:
  title: Everflow Affiliate API - Postbacks
  description: >
    Postback management endpoints for the Everflow Affiliate API. Affiliates can
    create, update, search, and list their conversion and event postbacks.


    **Terminology note:** the API uses **`pixel`** for the same entity the
    Everflow platform UI calls a **postback** — `pixel_id` (API) and
    `postback_id` (UI) refer to the same record. URL paths use `/pixels/...`;
    the platform's edit screens live at `/affiliates/postbacks/{id}/edit`.


    For postback concepts, see the [Postbacks
    guide](https://helpdesk.everflow.io/customer/introduction-to-partner-advertiser-postbacks).
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Affiliate Postbacks
    description: Endpoints for managing affiliate postbacks (pixels).
paths:
  /affiliates/pixelstable:
    post:
      tags:
        - Affiliate Postbacks
      summary: Find Postbacks (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:
              search_terms: []
              filters:
                pixel_status: active
              page: 1
              page_size: 50
            schema:
              type: object
              properties:
                search_terms:
                  type: array
                  description: Search terms to filter postbacks.
                  items:
                    type: string
                filters:
                  type: object
                  description: Filter criteria for the search.
                  properties:
                    pixel_status:
                      type: string
                      enum:
                        - active
                        - inactive
                    pixel_type:
                      type: string
                      enum:
                        - conversion
                        - post_conversion
                        - cpc
                    delivery_method:
                      type: string
                      enum:
                        - html
                        - postback
                        - facebook
                    network_offer_id:
                      type: integer
                      description: Filter by offer ID.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  pixels:
                    type: array
                    description: Array of postbacks matching the search criteria.
                    items:
                      type: object
                      properties:
                        network_pixel_id:
                          type: integer
                          description: Unique identifier for the postback.
                        network_id:
                          type: integer
                          description: Network ID.
                        network_offer_payout_revenue_id:
                          type: integer
                          description: Associated payout/revenue ID (0 if not specific).
                        delivery_method:
                          type: string
                          description: Delivery method (html, postback, facebook).
                        pixel_level:
                          type: string
                          description: Scope of the postback (global, specific).
                        pixel_status:
                          type: string
                          description: Whether the postback is active or inactive.
                        pixel_type:
                          type: string
                          description: >-
                            Type of event trigger (conversion, post_conversion,
                            cpc).
                        postback_url:
                          type: string
                          description: URL called when the postback fires.
                        html_code:
                          type: string
                          description: HTML/JavaScript pixel code.
                        network_affiliate_id:
                          type: integer
                          description: Affiliate ID that owns this postback.
                        network_affiliate_name:
                          type: string
                          description: Name of the affiliate that owns this postback.
                        network_offer_id:
                          type: integer
                          description: Associated offer ID (0 if global).
                        network_offer_name:
                          type: string
                          description: Name of the associated offer.
                        delay_ms:
                          type: integer
                          description: Delay in milliseconds before firing.
                        time_created:
                          type: integer
                          example: 1734455015
                          description: Unix timestamp when the postback was created.
                        time_saved:
                          type: integer
                          example: 1734455015
                          description: Unix timestamp when the postback was last updated.
                        relationship:
                          type: object
                          description: Related entity data (may be empty).
                          properties:
                            affiliate:
                              type: object
                              description: Affiliate that owns this postback.
                            offer:
                              type: object
                              description: Offer associated with this postback.
                            payout_revenue:
                              type: object
                              description: Payout/revenue configuration details.
                  paging:
                    type: object
                    properties:
                      page:
                        type: integer
                      page_size:
                        type: integer
                      total_count:
                        type: integer
      security:
        - API Key: []
components:
  securitySchemes:
    API Key:
      description: >
        The affiliate's API key generated from the Affiliate Portal. Uses the
        X-Eflow-Api-Key header.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````