GET
/
v1
/
scoring_config
/
{id}
curl --request GET \
  --url https://api.getscorecard.ai/v1/scoring_config/{id} \
  --header 'X-API-Key: <api-key>'
{
  "org_id": "<string>",
  "user_id": "<string>",
  "id": 123,
  "name": "<string>",
  "description": "<string>",
  "config": {},
  "is_archived": true,
  "metrics": [
    123
  ],
  "created_at": "2023-11-07T05:31:56Z",
  "project_id": 1
}

Authorizations

X-API-Key
string
header
required

Path Parameters

id
string
required

The id of the scoring config to get.

Response

200
application/json
Successful Response
org_id
string | null

The organization this resource belongs to.

user_id
string | null

The user this record belongs to.

id
integer | null
name
string | null
description
string | null
config
object | null
is_archived
boolean | null
default:
false
metrics
integer[] | null
created_at
string | null
project_id
integer | null

The ID of the project the scoring config belongs to.