Kandio
  • Getting started
  • Overview
  • Authorization code flow
  • Release notes
  • Assessment
    • Get assessments
    • Find assessment
  • Skillarea
    • Get skillareas
    • Find skillarea
  • Company Skillareas
    • Get skillareas
    • Find skillareas
  • Tests
    • Get tests
    • Create test
    • Get test skillareas
    • Get test company skillareas
    • Get test assessments
    • Create test assessment
  • Webhooks
    • Get webhooks
    • Create webhook
    • Find webhook
    • Update webhook
    • Delete webhook
Powered by GitBook
On this page
  1. Assessment

Get assessments

PreviousRelease notesNextFind assessment

Last updated 3 years ago

Get list of all the assessments in the organization

get

Return a collection of assessments

Authorizations
Path parameters
organizationstringRequired

Name of the organization | can be found in the URL

Responses
200
Assessments collection after a successful request
application/json
400
Bad request
get
GET /{organization}/assessments HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
[
  {
    "guid": "text",
    "created_at": "2025-06-05T08:24:17.979Z",
    "updated_at": "2025-06-05T08:24:17.979Z",
    "unlocked_at": "2025-06-05T08:24:17.979Z",
    "tests_id": 1,
    "candidate_id": 1,
    "archived": true,
    "locked": true,
    "anonymized": true,
    "status": "text",
    "time": 1,
    "human_time": "text",
    "rating": 1,
    "remark": "text",
    "time_limit": 1,
    "human_time_limit": "text",
    "breaks": "text"
  }
]