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

# Revert Data Supplements

Reverts (deletes) one or more data supplement records by their IDs. This removes the supplement data from your reporting. Use this when supplement data was incorrectly imported or is no longer needed.

Returns `true` on success.


## OpenAPI

````yaml openapi/data-supplements.yaml post /networks/supplements/revert
openapi: 3.0.3
info:
  title: Everflow Network API - Data Supplements
  description: >
    Data Supplement endpoints for the Everflow partner marketing platform. Data
    supplements allow you to ingest third-party reporting data (from Appsflyer,
    Adjust, TikTok Ads MBC, Google Ads Cost, and other sources) and merge it
    with your Everflow reporting data. For setup instructions, see the [Data
    Supplement guide](https://helpdesk.everflow.io/customer/data-supplement).
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Data Supplements
    description: >-
      Endpoints for creating, reverting, listing, and exporting data supplement
      records.
paths:
  /networks/supplements/revert:
    post:
      tags:
        - Data Supplements
      summary: Revert Data Supplements
      requestBody:
        required: true
        content:
          application/json:
            example:
              data_supplement_ids:
                - 12345
                - 12346
                - 12347
            schema:
              type: object
              required:
                - data_supplement_ids
              properties:
                data_supplement_ids:
                  type: array
                  description: Array of data supplement IDs to revert.
                  items:
                    type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  result:
                    type: boolean
                    description: Whether the revert 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

````