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

# SetPageMonitoringAPI mirrors the erdo_set_page_monitoring MCP tool.




## OpenAPI

````yaml /api/openapi.json post /v1/pages/monitoring/{pageID}
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, experiments, and bounded outreach.
    Authenticate with a Bearer API key (erdo_api_...) or scoped token
    (erdo_token_...).
  version: '2026-09-09'
servers:
  - url: https://api.erdo.ai
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/pages/monitoring/{pageID}:
    post:
      summary: |
        SetPageMonitoringAPI mirrors the erdo_set_page_monitoring MCP tool.
      operationId: POST:mcp.SetPageMonitoringAPI
      parameters:
        - allowEmptyValue: true
          explode: false
          in: path
          name: pageID
          required: true
          schema:
            type: string
          style: simple
      requestBody:
        content:
          application/json:
            schema:
              properties:
                ack_add:
                  description: >
                    \["desktop:resource"] — so they stop alerting and never
                    auto-repair.
                  items:
                    type: string
                  title: >
                    AckAdd acknowledges failure signatures — e.g.
                    ["mobile:overflow"] or
                  type: array
                ack_remove:
                  items:
                    type: string
                  title: |
                    AckRemove reverses an acknowledgement.
                  type: array
                ack_reset:
                  title: |
                    AckReset clears every acknowledgement on the page.
                  type: boolean
                excluded:
                  description: |
                    internal docs, demos). Omit to leave unchanged.
                  title: >
                    Excluded stops the page being probed at all (dashboards,
                    trackers,
                  type: boolean
                excluded_reason:
                  type: string
                page_id:
                  type: string
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  acked_failures:
                    items:
                      type: string
                    type: array
                  excluded:
                    type: boolean
                  excluded_reason:
                    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_...).

````