> ## 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.

# Update Suite

> Required scope `agent_eval:update`.



## OpenAPI

````yaml PATCH /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
    patch:
      tags:
        - Agent Eval
      summary: Update suite
      description: Required scope `agent_eval:update`.
      operationId: updateSuite
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                description:
                  type: string
                  nullable: true
                agent_id:
                  type: string
                  format: uuid
                  nullable: true
                parallelism:
                  type: integer
                  minimum: 1
                  maximum: 16
      responses:
        '200':
          description: Updated suite
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EvalSuite'
        '404':
          description: Not found
components:
  schemas:
    EvalSuite:
      type: object
      description: Curated bundle of eval cases that run as one batch (regression sweep).
      required:
        - id
        - company_id
        - name
        - parallelism
        - created_at
      properties:
        id:
          type: string
          format: uuid
        company_id:
          type: string
          format: uuid
        name:
          type: string
        description:
          type: string
          nullable: true
        agent_id:
          type: string
          format: uuid
          nullable: true
          description: >
            Optional default agent for ad-hoc cases added to the suite. Per-case
            `agent_id` always wins; this is just a convenience for the
            dashboard.
        parallelism:
          type: integer
          minimum: 1
          maximum: 16
          default: 1
          description: Max concurrent cases when the suite runs.
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        deleted_at:
          type: string
          format: date-time
          nullable: true
  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**.

````