GET List All AI Interviews¶
This API retrieves all AI Interviews associated with the company, ordered by the most recent first.
Request URL¶
GET /ai-interviews/active
Warning
Make sure to add your API key in the Header of the request using the key apiKey.
Query Parameters¶
Parameter |
Type |
Description |
|---|---|---|
name (optional) |
string |
Filter AI interviews by name. Performs a case-insensitive partial match on the AI interview 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 AI interviews associated with the company, with the most recent one listed first. If query parameters are provided, only matching AI interviews are returned.
[
{
"ai_interview_id": "integer",
"ai_interview_name": "string",
"created_by": "integer"
}
]
Examples¶
Success Response
[
{
"ai_interview_id": 101,
"ai_interview_name": "Business Development Manager III",
"created_by": 13
},
{
"ai_interview_id": 100,
"ai_interview_name": "Senior Product Analyst",
"created_by": 12
}
]