GET List all Assessments¶
This API retrieves information about all assessments associated with the company.
Request URL¶
GET /assessments/active
Warning
Make sure to add your API key in Header of the request
Query Parameters¶
Parameter |
Type |
Description |
|---|---|---|
name (optional) |
string |
Filter assessments by name. Performs a case-insensitive partial match on the assessment name. Example: |
from_date (optional) |
string |
Inclusive start of the creation-date filter range. Format Example: |
to_date (optional) |
string |
Inclusive end of the creation-date filter range. Format Example: |
Response¶
A JSON response containing assessments associated with the company, with the most recent one listed first. If query parameters are provided, only matching assessments are returned.
[
{
"assessment_id": "integer",
"assessment_name": "string",
"created_by": "string",
"date": "string"
},
]