메인 콘텐츠로 건너뛰기
GET
/
v2
/
{entity}
/
{project}
/
scores
/
{score_id}
점수 조회
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>"
}

인증

Authorization
string
header
필수

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

경로 매개변수

entity
string
필수
project
string
필수
score_id
string
필수

응답

성공 응답

score_id
string
필수

점수 ID

scorer
string
필수

Scorer에 대한 참조(weave:// URI)

value
number
필수

점수 값

evaluation_run_id
string | null

이 점수가 연결된 Evaluation run이 있는 경우, 해당 run ID

wb_user_id
string | null

직접 설정하지 마세요. 이 필드는 서버에서 자동으로 채웁니다.