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

# Bulk delete applications

> Permanently deletes multiple applications at once. Requires authentication.



## OpenAPI

````yaml /spec.json post /applications/bulk-delete
openapi: 3.1.1
info:
  title: Reactive Resume
  version: 5.2.2
  description: Reactive Resume API
  license:
    name: MIT
    url: https://github.com/amruthpillai/reactive-resume/blob/main/LICENSE
  contact:
    name: Amruth Pillai
    email: hello@amruthpillai.com
    url: https://amruthpillai.com
servers:
  - url: http://localhost:3000/api/openapi
security:
  - apiKey: []
externalDocs:
  url: https://docs.rxresu.me
  description: Reactive Resume Documentation
paths:
  /applications/bulk-delete:
    post:
      tags:
        - Applications
      summary: Bulk delete applications
      description: >-
        Permanently deletes multiple applications at once. Requires
        authentication.
      operationId: bulkDeleteApplications
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                ids:
                  type: array
                  minItems: 1
                  items:
                    type: string
              required:
                - ids
      responses:
        '200':
          description: The number of applications deleted.
          content:
            application/json:
              schema:
                type: object
                properties:
                  deleted:
                    type: number
                required:
                  - deleted
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-api-key
      in: header
      description: The API key to authenticate requests.

````