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

# Bulk-delete assets you own



## OpenAPI

````yaml /api/pixio-api.json delete /assets
openapi: 3.1.0
info:
  title: Pixio API
  version: 1.0.0
  description: >-
    Generate AI media, manage assets, inspect credits, and run saved workflows.
    Typical flow: GET /models -> GET /params -> POST /uploads -> POST /generate
    -> poll GET /generations/{id}. See GET /guide for the full protocol.
servers:
  - url: https://beta.pixio.myapps.ai/api/v1
security:
  - ApiKey: []
paths:
  /assets:
    delete:
      summary: Bulk-delete assets you own
      parameters:
        - name: ids
          in: query
          schema:
            type: string
          description: Comma-separated ids (or send JSON { ids })
        - name: source
          in: query
          schema:
            type: string
            enum:
              - upload
              - generated
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
                - ids
              properties:
                ids:
                  type: array
                  items:
                    type: string
                  maxItems: 100
                source:
                  type: string
                  enum:
                    - upload
                    - generated
      responses:
        '200':
          description: '{ deletedCount, deleted: [...], notFound: [...] }'
        '400':
          description: No ids provided
components:
  securitySchemes:
    ApiKey:
      type: http
      scheme: bearer
      description: Pixio API key

````