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

# ConfigureEvalWidgetCanaryAPI designates an existing widget in the


> authenticated staff caller's current organization, or clears it when widget is empty.




## OpenAPI

````yaml /api/openapi.json put /v1/evals/widget-canary
openapi: 3.0.0
info:
  title: Erdo API
  description: >-
    Erdo's REST API: query and write datasets, run agents, manage threads,
    integrations, pages, evals, workstreams, and experiments. Authenticate with
    a Bearer API key (erdo_api_...) or scoped token (erdo_token_...).
  version: '2026-08-15'
servers:
  - url: https://api.erdo.ai
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/evals/widget-canary:
    put:
      summary: |
        ConfigureEvalWidgetCanaryAPI designates an existing widget in the
      description: >
        authenticated staff caller's current organization, or clears it when
        widget is empty.
      operationId: PUT:mcp.ConfigureEvalWidgetCanaryAPI
      requestBody:
        content:
          application/json:
            schema:
              properties:
                widget:
                  description: >
                    organization. Empty clears the designation. There is
                    deliberately no organization id, URL, internal widget id, or
                    visitor-mode override.
                  title: >
                    Widget is a unique widget name or public key in the
                    authenticated
                  type: string
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  configured:
                    type: boolean
                  widget:
                    type: string
                  widget_name:
                    type: string
                type: object
          description: Success response
        default:
          $ref: '#/components/responses/APIError'
components:
  responses:
    APIError:
      content:
        application/json:
          schema:
            externalDocs:
              url: https://pkg.go.dev/encore.dev/beta/errs#Error
            properties:
              code:
                description: Error code
                example: not_found
                externalDocs:
                  url: https://pkg.go.dev/encore.dev/beta/errs#ErrCode
                type: string
              details:
                description: Error details
                type: object
              message:
                description: Error message
                type: string
            title: APIError
            type: object
      description: Error response
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: An Erdo API key (erdo_api_...) or scoped token (erdo_token_...).

````