> ## Documentation Index
> Fetch the complete documentation index at: https://docs.akool.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Faceswap Results

> Delete faceswap results by IDs

## Important Notes

* Result IDs should be comma-separated strings
* You can get the `_id` field from [Image Faceswap](/ai-tools-suite/faceswap/image-faceswap) or [Video Faceswap](/ai-tools-suite/faceswap/video-faceswap) API responses
* This operation is irreversible - deleted results cannot be recovered


## OpenAPI

````yaml POST /api/open/v3/faceswap/result/delbyids
openapi: 3.0.3
info:
  title: Face Swap API
  description: API for face swapping in images and videos
  version: 1.0.0
servers:
  - url: https://openapi.akool.com
    description: Production server
security:
  - ApiKeyAuth: []
  - BearerAuth: []
paths:
  /api/open/v3/faceswap/result/delbyids:
    post:
      tags:
        - Face Swap
      summary: Delete Faceswap Results
      description: Delete faceswap results by IDs
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - _ids
              properties:
                _ids:
                  type: string
                  description: Result IDs are strings separated by commas
            example:
              _ids: 64ef2f27b33f466877701c6a,64ef2f27b33f466877701c6b
      responses:
        '200':
          description: Results deleted successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
components:
  schemas:
    ApiResponse:
      type: object
      required:
        - code
        - msg
      properties:
        code:
          type: integer
          description: 'Interface returns business status code (1000: success)'
          example: 1000
        msg:
          type: string
          description: Interface returns status information
          example: OK
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Your API Key used for request authorization. If both Authorization and
        x-api-key have values, Authorization will be used first and x-api-key
        will be discarded.
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        Your API Key used for request authorization. Get Token from
        authentication/usage#get-the-token

````