---
title: "List scorecard question candidate attributes"
method: GET
path: "/v3/scorecard_question_candidate_attributes"
tags: ["Scorecard Question Candidate Attributes"]
---

# List scorecard question candidate attributes

`GET /v3/scorecard_question_candidate_attributes`

Scorecard question candidate attributes are the join that tells an interviewer which focus attributes a given scorecard question is asking them to assess. Each row pairs one `scorecard_question` with one `focus_candidate_attribute` — there is no rating or note on the join itself; the actual interviewer answer lives on `scorecard_candidate_attributes`. Despite the resource name, the foreign key points at a `focus_candidate_attribute` (per interview kit), not directly at a `job_candidate_attribute` or `candidate_attribute_type`. Filter by `scorecard_question_ids` to find every focus attribute a given question covers, or by `focus_candidate_attribute_ids` to find every scorecard question that evaluates a given focus attribute. Today this endpoint is site-admin-only.

## Query parameters

- `cursor` string
- `per_page` integer
- `ids` integer[]
- `created_at` object
  - `gte` string, date-time
  - `lte` string, date-time
  - `gt` string, date-time
  - `lt` string, date-time
- `updated_at` object
  - `gte` string, date-time
  - `lte` string, date-time
  - `gt` string, date-time
  - `lt` string, date-time
- `scorecard_question_ids` integer[]
- `focus_candidate_attribute_ids` integer[]
- `fields` string[]

## Response `200`

Successful

- object[]
  - `id` integer
  - `created_at` string, date-time
  - `updated_at` string, date-time
  - `scorecard_question_id` integer — Id of the `scorecard_question` that evaluates this candidate attribute. Each row links one scorecard question to one focus attribute; the same question can be linked to multiple focus attributes (and vice versa) through additional rows.
  - `focus_candidate_attribute_id` integer — Id of the `focus_candidate_attribute` this scorecard question is asking interviewers to assess. Despite the resource name, the foreign key points to a focus attribute (per interview kit) — not directly to a `job_candidate_attribute` or `candidate_attribute_type`. To get the attribute's display name or type, follow the chain `focus_candidate_attribute` → `job_candidate_attribute` → `candidate_attribute_type`.

---

[API](https://skmtc.dev/greenhouse/apis/auth-api.md) · [All operations](https://skmtc.dev/greenhouse/apis/auth-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/greenhouse/auth-api/revisions/9517a2e54640/schema)
