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

# Delete Partner Postback

Delete a partner postback (pixel) by its ID. This action is permanent and cannot be undone. The postback will no longer fire for future conversions.


## OpenAPI

````yaml openapi/partner-postbacks-extras.yaml delete /networks/pixels/{pixelId}
openapi: 3.0.3
info:
  title: Everflow Network API - Partner Postbacks (Additional Endpoints)
  description: Additional partner postback (pixel) endpoints for the Everflow network.
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Partner Postbacks
    description: Additional partner postback endpoints.
paths:
  /networks/pixels/{pixelId}:
    delete:
      tags:
        - Partner Postbacks
      summary: Delete Partner Postback
      parameters:
        - in: path
          name: pixelId
          required: true
          schema:
            type: integer
          description: The pixel (postback) ID.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  result:
                    type: boolean
                    description: Whether the deletion was successful.
      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

````