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

# Delete Suite

> Soft-delete. Required scope `agent_eval:delete`. Cases under this suite have their `suite_id` set to null but are not deleted.

Soft-delete (sets `deleted_at` on the suite row). Cases under this suite are **not** touched — they keep their `suite_id` pointing at the now-deleted suite and continue to be returned when you filter cases by that `suite_id`. If you want them to become ad-hoc, `PATCH` each one to `suite_id: null` yourself.


## OpenAPI

````yaml DELETE /agent-eval/suites/{id}
openapi: 3.1.0
info:
  title: Yappr API
  description: >
    Create and manage AI voice agents, purchase phone numbers, configure tools,
    and initiate calls — all via REST.
  version: 1.0.0
  contact:
    url: https://goyappr.com
servers:
  - url: https://api.goyappr.com
    description: Production
security:
  - apiKey: []
paths:
  /agent-eval/suites/{id}:
    parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
          format: uuid
    delete:
      tags:
        - Agent Eval
      summary: Delete suite
      description: >-
        Soft-delete. Required scope `agent_eval:delete`. Cases under this suite
        have their `suite_id` set to null but are not deleted.
      operationId: deleteSuite
      responses:
        '200':
          description: Suite deleted
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  id:
                    type: string
                    format: uuid
        '404':
          description: Not found
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: >-
        Your Yappr API key (e.g. `ypr_live_...`). Generate one in the dashboard
        under **Settings → API Keys**.

````