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. Tests

Create test assessment

PreviousGet test assessmentsNextGet webhooks

Last updated 3 years ago

Create an assessment for an already existing test

post

Returns a single assessment

Path parameters
organizationstringRequired

Name of the organization | can be found in the URL

teststringRequired

id of the test to return

Body
emailstringOptional

Email of the candidate

firstnamestringOptional

Firstname of the candidate

lastnamestringOptional

Lastname of the candidate

notifybooleanOptional

Should we notify users for the assessment that will be taken

Responses
200
successful operation
application/json
400
Invalid Assessment
404
Assessment not found
post
POST /{organization}/tests/{test}/assessments HTTP/1.1
Host: 
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 67

"email='text'&firstname='text'&lastname='text'&notify=true"
{
  "guid": "text",
  "created_at": "2025-06-05T12:50:49.182Z",
  "updated_at": "2025-06-05T12:50:49.182Z",
  "unlocked_at": "2025-06-05T12:50:49.182Z",
  "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"
}