Upsert Score
Create or update a Score for a given Record and MetricConfig. If a Score with the specified Record ID and MetricConfig ID already exists, it will be updated. Otherwise, a new Score will be created. The score provided should conform to the schema defined by the MetricConfig; otherwise, validation errors will be reported.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The ID of the Record.
"777"
The ID of the MetricConfig.
"a1b2c3d4-e5f6-7890-1234-567890abcdef"
Body
Response
Score upserted successfully.
A Score represents the evaluation of a Record against a specific MetricConfig. The actual score
is stored as flexible JSON. While any JSON is accepted, it is expected to conform to the output schema defined by the MetricConfig. Any discrepancies will be noted in the validationErrors
field, but the Score will still be stored.