Skip to content

/api/rating-thresholds/{id} (PUT)

PUT
/api/rating-thresholds/{id}
curl --request PUT \
--url https://example.com/api/rating-thresholds/1 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "goodEdge": 1, "goodConfidence": 1, "marginalEdge": 1, "marginalConfidence": 1, "notes": "example" }'
id
required
integer format: int32
object
goodEdge
number format: double
goodConfidence
number format: double
marginalEdge
number format: double
marginalConfidence
number format: double
notes
string
nullable
Example generated
{
"goodEdge": 1,
"goodConfidence": 1,
"marginalEdge": 1,
"marginalConfidence": 1,
"notes": "example"
}

OK