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

# Delete Verification

> Remove a single verification or bulk-delete up to 100

## Bulk delete

To delete multiple records at once:

```bash theme={null}
curl -X DELETE https://api.check.et/api/v1/verifications/bulk \
  -H "Authorization: Bearer chk_xxx" \
  -H "Content-Type: application/json" \
  -d '{"ids": [9812, 9813, 9814]}'
```

Response: `{ "message": "Verifications removed", "deleted": 3 }`

<Note>
  Requires **Manager** or **Admin** role on the branch.
</Note>


## OpenAPI

````yaml DELETE /verifications/{id}
openapi: 3.1.0
info:
  title: Check.et API
  version: '1.0'
  description: >
    Verify Ethiopian bank and wallet payments - CBE, Telebirr, Dashen, Awash,
    Bank of Abyssinia, Zemen, CBE Birr, M-Pesa Ethiopia, and Siinqee. One
    endpoint, structured JSON back every time.
  contact:
    name: Check.et Support
    url: https://t.me/Mal_tse
servers:
  - url: https://api.check.et/api/v1
    description: Production
security:
  - BearerAuth: []
paths:
  /verifications/{id}:
    delete:
      summary: Delete a verification
      description: >-
        Remove a single verification from your history. Requires Manager or
        Admin role.
      operationId: deleteVerification
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: integer
            example: 9812
      responses:
        '200':
          description: Deleted
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Verification removed
        '403':
          description: Insufficient permissions
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key from your dashboard - starts with `chk_`. Requires a business
        account.

````