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

# Delete customers (bulk)



## OpenAPI

````yaml DELETE /customers/bulk
openapi: 3.0.1
info:
  title: Fire spark Admin API
  description: Back-office and merchant operations endpoints for Fire spark.
  version: 1.0.0
servers:
  - url: https://firespark.cloud/api/admin/v1
security:
  - bearerAuth: []
paths:
  /customers/bulk:
    delete:
      summary: Delete customers (bulk)
      requestBody:
        required: true
        description: Customer identifiers to delete.
        content:
          application/json:
            schema:
              type: object
              required:
                - ids
              properties:
                ids:
                  type: array
                  items:
                    type: string
      responses:
        '200':
          description: Customers deleted
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````