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

# Delete award prompt

> Deletes an award prompt for a specific rule set. Requires `arbitrators.award-prompts.writer` permission.



## OpenAPI

````yaml api-reference/arbitrators.yaml post /award-prompts/delete
openapi: 3.0.3
info:
  title: arbitrators
  description: >-
    The Arbitrators service manages and executes the tasks that arbitrators need
    to perform on our platform. It ensures that each task is created, tracked,
    and completed according to the platform's rules and workflows.
  version: 1.0.0
servers:
  - url: https://arbitrators.platform.arb.inc
security: []
tags:
  - name: /
  - name: award
  - name: award-prompts
  - name: case-summary
  - name: case-timeline
  - name: claims-counterclaims
  - name: key-issues
  - name: summary-of-positions
paths:
  /award-prompts/delete:
    post:
      tags:
        - award-prompts
      summary: Delete award prompt
      description: >-
        Deletes an award prompt for a specific rule set. Requires
        `arbitrators.award-prompts.writer` permission.
      operationId: deleteAwardPrompt
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - ruleSet
              properties:
                ruleSet:
                  type: string
                  minLength: 1
                  maxLength: 50
                  description: Rule set identifier
                  example: AAA-Commercial
      responses:
        '200':
          description: Award prompt successfully deleted
          content:
            text/plain:
              schema:
                type: string
                example: award prompt successfully deleted
        '404':
          description: Award prompt not found
          content:
            text/plain:
              schema:
                type: string
                example: award prompt not found for rule set
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: access token
      scheme: bearer
      bearerFormat: JWT

````