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

# Create or update award prompt

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



## OpenAPI

````yaml api-reference/arbitrators.yaml post /award-prompts/create
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/create:
    post:
      tags:
        - award-prompts
      summary: Create or update award prompt
      description: >-
        Creates or updates an award prompt for a specific rule set. Requires
        `arbitrators.award-prompts.writer` permission.
      operationId: createAwardPrompt
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - ruleSet
                - prompt
              properties:
                ruleSet:
                  type: string
                  minLength: 1
                  maxLength: 50
                  description: Rule set identifier
                  example: AAA-Commercial
                prompt:
                  type: string
                  minLength: 1
                  maxLength: 50000
                  description: AI prompt text for generating awards
                  example: >-
                    You are an arbitrator following AAA Commercial rules. Review
                    the case materials and provide a detailed award...
      responses:
        '200':
          description: Award prompt successfully saved
          content:
            text/plain:
              schema:
                type: string
                example: award prompt successfully saved
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: access token
      scheme: bearer
      bearerFormat: JWT

````