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

# Deny request



## OpenAPI

````yaml /openapi.yaml post /approvals/{id}/deny
openapi: 3.1.0
info:
  title: Mentionpath API
  version: 1.0.0
  description: >
    Programmatic access to Mentionpath workspace data and actions.


    The REST API mirrors the MCP tool surface. Reads return immediately.
    Mutations may return

    `202` with `APPROVAL_REQUIRED` when invoked with a token that requires human
    approval.


    Base URL: `https://api.mentionpath.ai/api/v1`
servers:
  - url: https://api.mentionpath.ai/api/v1
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Domains
  - name: Prompts
  - name: Audits
  - name: Competitors
  - name: Visibility
  - name: Mentions
  - name: Traffic
  - name: Webflow
  - name: Approvals
paths:
  /approvals/{id}/deny:
    post:
      tags:
        - Approvals
      summary: Deny request
      operationId: denyRequest
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Denied
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API token or OAuth access token from Account → API in the Mentionpath
        app.

````