Passer au contenu principal
GET
/
v2
/
{entity}
/
{project}
/
scores
/
{score_id}
Lire le score
curl --request GET \
  --url https://api.example.com/v2/{entity}/{project}/scores/{score_id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "score_id": "<string>",
  "scorer": "<string>",
  "value": 123,
  "evaluation_run_id": "<string>",
  "wb_user_id": "<string>"
}

Autorisations

Authorization
string
header
requis

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Paramètres de chemin

entity
string
requis
project
string
requis
score_id
string
requis

Réponse

Réponse réussie

score_id
string
requis

L’ID du score

scorer
string
requis

La référence du scorer (URI weave://)

value
number
requis

La valeur du score

evaluation_run_id
string | null

ID de run d’évaluation si ce score lui est lié

wb_user_id
string | null

Ne définissez pas ce champ directement. Le serveur le renseignera automatiquement.