Method returns tests list from StartExam using specified filters.
GET https://api.startexam.com/v1/tests?projectId={projectId}&type={type}&status={status}
projectId
- optional filter by project identifier, guid from StartExam.
type
- optional filter by type. Supported values: test
, survey
.
status
- optional filter by status. Supported values: active
, archive
, deleted
.
None.
GET https://api.startexam.com/v1/tests?projectId=43f9b0bc-d2f2-40c2-96cc-97c8915b4744 HTTP/1.1
Host: api.startexam.com
Accept: application/json; charset=utf-8
Authorization: SharedKey 99:f52JP7GQd0xqrBzMO1NWTNVGzLENymgdUXu/Ie++NX4=
Content-Type: application/json; charset=utf-8
Date: Thu, 03 Apr 2025 03:11:49 GMT
Date and Authorization headers are constructed in the standard way.
200 OK, 400 Bad Request, etc. according the response processing guide.
Json.
testId
- test id, guid.
projectId
- project id, guid.
type
- test type, test/survey.
status
- test status, active/archive/deleted.
title
- test name, string.
description
- test description, string, nullable.
time
- test time limit, HH:MM:SS, nullable.
modified
- test last modified in UTC, ISO 8601.
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: 657
{
"tests": [
{
"testId": "9a6705ff-6c48-4b59-9628-e0c8fc619707",
"projectId": "43f9b0bc-d2f2-40c2-96cc-97c8915b4744",
"type": "test",
"status": "active",
"title": "IQ Test",
"description": "Standard intelligence quotient assessment",
"time": "02:00:00",
"modified": "2024-06-03T03:11:49Z"
},
{
"testId": "413b380f-42b0-493d-a385-cbd03f757d4a",
"projectId": "43f9b0bc-d2f2-40c2-96cc-97c8915b4744",
"type": "survey",
"status": "deleted",
"title": "Motivation Survey",
"description": null,
"time": null,
"modified": "1995-04-03T03:11:49Z"
}
]
}