GET
/
unified
/
ats
/
applications
/
{id}
/
scorecards
/
{subResourceId}
curl --request GET \
  --url https://api.stackone.com/unified/ats/applications/{id}/scorecards/{subResourceId} \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'x-account-id: <x-account-id>'
{
  "data": {
    "id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
    "remote_id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
    "sections": [
      {
        "id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
        "remote_id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
        "label": "Technical Skills",
        "fields": [
          {
            "id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
            "remote_id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
            "label": "Problem Solving",
            "type": "text",
            "values": [
              "Excellent",
              "Good",
              "Average",
              "Poor"
            ],
            "required": true
          }
        ]
      }
    ],
    "label": "Technical Interview",
    "candidate_id": "5678-9",
    "remote_candidate_id": "e3cb75bf-aa84-466e-a6c1-b8322b257a48",
    "application_id": "1011-12",
    "remote_application_id": "e3cb75bf-aa84-466e-a6c1-b8322b257a48",
    "interview_id": "1314-15",
    "remote_interview_id": "e3cb75bf-aa84-466e-a6c1-b8322b257a48",
    "author_id": "1617-18",
    "remote_author_id": "e3cb75bf-aa84-466e-a6c1-b8322b257a48",
    "overall_recommendation": "recommended",
    "created_at": "2021-01-01T00:00.000Z",
    "updated_at": "2021-01-01T00:00.000Z"
  },
  "raw": [
    {
      "method": "<string>",
      "url": "<string>",
      "body": "<string>",
      "response": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Headers

x-account-id
string
required

The account identifier

Path Parameters

id
string
required
subResourceId
string
required

Query Parameters

raw
boolean | null
default:false

Indicates that the raw request result is returned

proxy
object | null

Query parameters that can be used to pass through parameters to the underlying provider request by surrounding them with 'proxy' key

fields
string | null

The comma separated list of fields that will be returned in the response (if empty, all fields are returned)

Example:

"id,remote_id,sections,label,candidate_id,remote_candidate_id,application_id,remote_application_id,interview_id,remote_interview_id,author_id,remote_author_id,overall_recommendation,created_at,updated_at"

Response

200
application/json
The scorecard related to the application with the given identifiers was retrieved.
data
object
required
raw
object[] | null