PUT
/
projects
/
{project_id}
/
summarization_settings
curl --request PUT \
  --url https://api.beyondwords.io/v1/projects/{project_id}/summarization_settings \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '{
  "enabled": true,
  "prompt": "Summarize the provided article text. Aim for a summary of about 250-300 words."
}'
{
  "enabled": true,
  "prompt": "Summarize the provided article text."
}

Authorizations

X-Api-Key
string
header
required

Path Parameters

project_id
string
required

The numeric ID of your project

Body

application/json
enabled
boolean

Whether AI summaries should be generated for the project.

prompt
string | null

The prompt that will be used to generate AI summaries.

temperature
number | null
limit_token_usage
integer | null

Response

200
application/json
successful
enabled
boolean

Whether AI summaries should be generated for the project.

prompt
string | null

The prompt that will be used to generate AI summaries.

temperature
number | null
limit_token_usage
integer | null