Skip to main content
POST
/
award-prompts
/
create
Create or update award prompt
curl --request POST \
  --url https://arbitrators.platform.arb.inc/award-prompts/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ruleSet": "AAA-Commercial",
  "prompt": "You are an arbitrator following AAA Commercial rules. Review the case materials and provide a detailed award..."
}
'
"award prompt successfully saved"

Authorizations

Authorization
string
header
required

access token

Body

application/json
ruleSet
string
required

Rule set identifier

Required string length: 1 - 50
Example:

"AAA-Commercial"

prompt
string
required

AI prompt text for generating awards

Required string length: 1 - 50000
Example:

"You are an arbitrator following AAA Commercial rules. Review the case materials and provide a detailed award..."

Response

200 - text/plain

Award prompt successfully saved

The response is of type string.

Example:

"award prompt successfully saved"