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

# Delete blocklist entries in bulk

> Delete multiple blocklist entries by ID in a single request.

    > **Required scope:** `BLOCKLIST_WRITE`
    >
    > **Rate limit:** 30 requests per minute



## OpenAPI

````yaml https://openapi.enginy.ai/definitions.json post /v1/blocklist/bulk-delete
openapi: 3.1.0
info:
  title: Enginy API
  version: 1.0.0
  description: Public API for Enginy platform
servers:
  - url: https://openapi.enginy.ai
    description: Configured server
security: []
tags:
  - name: AI Variables
    description: >-
      Manage AI variables and discover the entity fields you can reference in
      prompts and entity requests.
  - name: Inbox
    description: >-
      Inbox endpoints for listing contact threads, reading thread messages,
      managing tags, and sending manual replies.
  - name: Workflows
    description: >-
      Build, validate, publish, run, and inspect advanced (graph) workflows,
      plus the block/condition catalog needed to author a workflow plan.
paths:
  /v1/blocklist/bulk-delete:
    post:
      tags:
        - Blocklist
      summary: Delete blocklist entries in bulk
      description: |-
        Delete multiple blocklist entries by ID in a single request.

            > **Required scope:** `BLOCKLIST_WRITE`
            >
            > **Rate limit:** 30 requests per minute
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                ids:
                  type: array
                  items:
                    type: integer
                    exclusiveMinimum: 0
                  minItems: 1
                  maxItems: 500
                  description: Blocklist item IDs to delete. Up to 500 per request.
              required:
                - ids
            examples:
              basic:
                summary: Delete by IDs
                value:
                  ids:
                    - 101
                    - 102
                    - 103
      responses:
        '200':
          description: Items deleted
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - success
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      deletedCount:
                        type: number
                        description: Number of items deleted.
                    required:
                      - deletedCount
                required:
                  - status
                  - message
                  - data
        '404':
          description: No matching blocklist items found
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````