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

# Reject suggested categorization rule

> Rejects a suggested categorization rule update. This marks the suggestion as dismissed and prevents it from being shown again.



## OpenAPI

````yaml delete /v1/businesses/{businessId}/categorization-rules/suggestions/{suggestionId}
openapi: 3.0.1
info:
  title: API
  version: latest
servers: []
security:
  - BearerAuth: []
tags: []
externalDocs:
  url: /
paths:
  /v1/businesses/{businessId}/categorization-rules/suggestions/{suggestionId}:
    delete:
      tags:
        - Categorization Rules
      summary: Reject suggested categorization rule
      description: >-
        Rejects a suggested categorization rule update. This marks the
        suggestion as dismissed and prevents it from being shown again.
      operationId: business.categorization-rules.suggestions.reject
      parameters:
        - name: businessId
          in: path
          description: The UUID of the business.
          required: true
          schema:
            type: string
            format: uuid
        - name: suggestionId
          in: path
          description: The UUID of the suggestion to reject.
          required: true
          schema:
            type: string
            format: uuid
        - name: Content-Type
          in: header
          description: Content-Type must be set to application/json.
          schema:
            type: string
      responses:
        '200':
          description: Suggestion rejected successfully.
          content:
            application/json:
              schema:
                type: object
                properties: {}
        '404':
          description: Suggestion not found.
      deprecated: false
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````