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

PreviousGet testsNextGet test skillareas

Last updated 3 years ago

Create a test in an organization

post
Path parameters
organizationstringRequired

Name of the organization | can be found in the URL

Body
namestringOptional

Name of the test

passwordstringOptional

Password of the test

skillareasinteger[]Optional

Array of skill areas to be included into the assessment

Responses
200
successful operation
application/json
post
POST /{organization}/tests HTTP/1.1
Host: 
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 50

"name='text'&password='text'&skillareas=[1]"
200

successful operation

{
  "id": 1,
  "created_at": "2025-06-05T08:55:48.665Z",
  "ended_at": "2025-06-05T08:55:48.665Z",
  "name": "text",
  "archived": true,
  "url": "text",
  "time_limit": "text",
  "password": "text"
}